mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 12:28:46 +00:00
Bug fix where the account's balance would be cached when it shouldn't.
This commit is contained in:
@@ -29,7 +29,8 @@ class Steam
|
||||
$key = 'account.' . $account->id . '.balanceOn' . $date->format('dmy');
|
||||
}
|
||||
if (\Cache::has($key)) {
|
||||
return \Cache::get($key);
|
||||
// TODO find a way to reliably remove cache entries for accounts.
|
||||
#return \Cache::get($key);
|
||||
}
|
||||
$date = is_null($date) ? Carbon::now() : $date;
|
||||
$balance = floatval(
|
||||
|
||||
Reference in New Issue
Block a user