mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 12:12:18 +00:00
Double check on integers for https://github.com/firefly-iii/firefly-iii/issues/3554
This commit is contained in:
@@ -63,9 +63,9 @@ class TransactionLinkTransformer extends AbstractTransformer
|
||||
'id' => (int)$link->id,
|
||||
'created_at' => $link->created_at->toAtomString(),
|
||||
'updated_at' => $link->updated_at->toAtomString(),
|
||||
'inward_id' => $link->source_id,
|
||||
'outward_id' => $link->destination_id,
|
||||
'link_type_id' => $link->link_type_id,
|
||||
'inward_id' => (int) $link->source_id,
|
||||
'outward_id' => (int) $link->destination_id,
|
||||
'link_type_id' => (int) $link->link_type_id,
|
||||
'notes' => '' === $notes ? null : $notes,
|
||||
'links' => [
|
||||
[
|
||||
|
Reference in New Issue
Block a user