fix: dispatch time series rates

This commit is contained in:
hackerESQ
2025-05-16 19:38:58 -05:00
parent 3589242996
commit 1b0f9c134c
+2 -1
View File
@@ -135,7 +135,8 @@ class CurrencyRate extends Model
if (is_array($currency)) {
foreach ($currency as $curr) {
dispatch(self::timeSeriesRates($curr, $start, $end));
dispatch(fn () => self::timeSeriesRates($curr, $start, $end));
}
return [];