mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
Fixed a bug where start / end would be used incorrectly.
This commit is contained in:
parent
53ff5c1490
commit
2694297466
@ -144,7 +144,7 @@ class AccountController extends Controller
|
||||
$account->lastActivityDate = null;
|
||||
}
|
||||
$account->startBalance = Steam::balance($account, $start);
|
||||
$account->endBalance = Steam::balance($account, Session::get('end'));
|
||||
$account->endBalance = Steam::balance($account, clone Session::get('end'));
|
||||
}
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user