mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
Fix #987
This commit is contained in:
parent
428bdfbe6f
commit
b6514c7e54
@ -492,7 +492,7 @@ class Transaction extends Twig_Extension
|
||||
->leftJoin('accounts', 'accounts.id', '=', 'transactions.account_id')
|
||||
->leftJoin('account_types', 'account_types.id', '=', 'accounts.account_type_id')
|
||||
->first(['transactions.account_id', 'accounts.encrypted', 'accounts.name', 'account_types.type']);
|
||||
$name = app('steam')->tryDecrypt(intval($other->encrypted), $other->name);
|
||||
$name = app('steam')->tryDecrypt($other->name);
|
||||
$transactionId = $other->account_id;
|
||||
$type = $other->type;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user