File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
resources/views/components Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 3232
3333<img {!! $attributes ! !} loading =" {{ $loading } }" src =" {!! $src ?? $source ?-> getUrl (parameters : $parameters ) ! !}"
3434 height =" {{ $height ?? $source ?-> height } }" width =" {{ $width ?? $source ?-> width } }" alt =" {{ $alt ?? $source ?-> name } }"
35- @if ($placeholderContents ) style =" background-size :cover ;background-image : url (data:image/jpeg;base64,{{ $placeholderContents }} )" @endif >
35+ @if ($placeholderContents ) style =" background-size :cover ;background-image : url (data:image/jpeg;base64,{{ $placeholderContents }} )" @endif / >
Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ public function getChildrenConversionsDefinitions(string $name): array
256256 public function dispatchConversion (
257257 string $ conversion ,
258258 bool $ force = true ,
259+ ?string $ queue = null
259260 ): ?PendingDispatch {
260261 if (
261262 $ force === false &&
@@ -270,8 +271,10 @@ public function dispatchConversion(
270271
271272 $ job = dispatch ($ converter ->conversion ($ conversion ));
272273
273- if ($ queue = $ definition -> queue ) {
274+ if ($ queue ) {
274275 $ job ->onQueue ($ queue );
276+ } elseif ($ definition ->queue ) {
277+ $ job ->onQueue ($ definition ->queue );
275278 }
276279
277280 return $ job ;
You can’t perform that action at this time.
0 commit comments