We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f84d3 commit affe094Copy full SHA for affe094
src/Image.php
@@ -176,7 +176,7 @@ public function getSrc(): string
176
{
177
$src = $this->src instanceof Responsive ? $this->src->src : $this->src;
178
// If the URL starts with 'http://' or 'https://' and is not from 'storage.flyo.cloud', return it directly
179
- if (preg_match('#^https?:\/\/#', $src) && !str_contains($this->src, 'storage.flyo.cloud')) {
+ if (preg_match('#^https?:\/\/#', $src) && !str_contains($src, 'storage.flyo.cloud')) {
180
return $src;
181
}
182
0 commit comments