mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-15 19:09:50 +00:00
Fix for #1723
This commit is contained in:
@@ -64,8 +64,10 @@ class FixerIOv2 implements ExchangeRateInterface
|
||||
$exchangeRate->user()->associate($this->user);
|
||||
$exchangeRate->fromCurrency()->associate($fromCurrency);
|
||||
$exchangeRate->toCurrency()->associate($toCurrency);
|
||||
$exchangeRate->date = $date;
|
||||
$exchangeRate->rate = $rate;
|
||||
$exchangeRate->date = $date;
|
||||
$exchangeRate->rate = $rate;
|
||||
$exchangeRate->updated_at = new Carbon;
|
||||
$exchangeRate->created_at = new Carbon;
|
||||
|
||||
// get API key
|
||||
$apiKey = env('FIXER_API_KEY', '');
|
||||
|
||||
Reference in New Issue
Block a user