From c5646433f5d6f7b76c4bc993c07d0be9e93692c5 Mon Sep 17 00:00:00 2001 From: ghost Date: Thu, 14 Sep 2023 03:27:25 +0300 Subject: [PATCH] fix data type --- src/crontab/export/feed.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/crontab/export/feed.php b/src/crontab/export/feed.php index 82ac5b9..8682efb 100644 --- a/src/crontab/export/feed.php +++ b/src/crontab/export/feed.php @@ -299,11 +299,11 @@ try 'timeUpdated' => $magnet->timeUpdated, 'dn' => $magnet->dn, 'xl' => $magnet->xl, - 'xt' => $xt, - 'kt' => $kt, - 'tr' => $tr, - 'as' => $as, - 'xs' => $xs, + 'xt' => (array) $xt, + 'kt' => (array) $kt, + 'tr' => (array) $tr, + 'as' => (array) $as, + 'xs' => (array) $xs, ]; }