summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2025-04-01 21:04:04 +0100
committerSam Light <samlight1994@gmail.com>2025-04-01 21:04:04 +0100
commit315b024db633d925993d1084add73322664849e4 (patch)
tree3d0f55d1399c2b37ae77f5ba57fc0710cc82b100
parent2057502acd4a460bd121c648fe64c05cf4ab8e8b (diff)
Fix bug with getting url
-rw-r--r--src/Assets.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Assets.php b/src/Assets.php
index b9f3a57..6050176 100644
--- a/src/Assets.php
+++ b/src/Assets.php
@@ -101,7 +101,7 @@ class Assets
{
$file = new FileString($file);
$manifest = $this->getFileManifest($file);
- $url = $manifest->getUrl($file->fileUri) ?? $file->fileUri;
+ $url = $manifest?->getUrl($file->fileUri) ?? $file->fileUri;
$file = new $fileClass($url);
$this->pushFile($file, $footer);