From d6647b488f1ca7a2224702cdc551e3836fa9e7a3 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Fri, 14 Jan 2022 15:23:00 +0800 Subject: [PATCH] fix yd fetch --- app/Console/Commands/CurlYdOrderListCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/CurlYdOrderListCommand.php b/app/Console/Commands/CurlYdOrderListCommand.php index 318139e8..42f2130c 100644 --- a/app/Console/Commands/CurlYdOrderListCommand.php +++ b/app/Console/Commands/CurlYdOrderListCommand.php @@ -41,6 +41,6 @@ class CurlYdOrderListCommand extends Command */ public function handle() { - return FetchOrdersFromYDPortalJob::dispatch(); + return FetchOrdersFromYDPortalJob::withChain([])->dispatch(); } }