mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 17:33:45 +00:00
Make sure integers are converted to strings because sqlite sucks.
This commit is contained in:
@@ -65,7 +65,7 @@ class Amount
|
||||
// Log::debug(sprintf('Overruled, amount is now %s', $amount));
|
||||
}
|
||||
|
||||
return $amount;
|
||||
return (string) $amount;
|
||||
}
|
||||
|
||||
public function convertToNative(?User $user = null): bool
|
||||
|
Reference in New Issue
Block a user