mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-10 13:21:21 +00:00
🤖 Auto commit for release 'develop' on 2025-10-26
This commit is contained in:
@@ -127,6 +127,7 @@ class MailError extends Job implements ShouldQueue
|
|||||||
|
|
||||||
if (!file_exists($file)) {
|
if (!file_exists($file)) {
|
||||||
Log::debug(sprintf('Wrote new file in "%s"', $file));
|
Log::debug(sprintf('Wrote new file in "%s"', $file));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
file_put_contents($file, json_encode($limits, JSON_PRETTY_PRINT));
|
file_put_contents($file, json_encode($limits, JSON_PRETTY_PRINT));
|
||||||
} catch (FilesystemException $e) {
|
} catch (FilesystemException $e) {
|
||||||
@@ -137,6 +138,7 @@ class MailError extends Job implements ShouldQueue
|
|||||||
}
|
}
|
||||||
if (file_exists($file)) {
|
if (file_exists($file)) {
|
||||||
Log::debug(sprintf('Read file in "%s"', $file));
|
Log::debug(sprintf('Read file in "%s"', $file));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$limits = json_decode(file_get_contents($file), true);
|
$limits = json_decode(file_get_contents($file), true);
|
||||||
} catch (FilesystemException $e) {
|
} catch (FilesystemException $e) {
|
||||||
@@ -171,6 +173,7 @@ class MailError extends Job implements ShouldQueue
|
|||||||
}
|
}
|
||||||
++$limits[$type]['sent'];
|
++$limits[$type]['sent'];
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
file_put_contents($file, json_encode($limits, JSON_PRETTY_PRINT));
|
file_put_contents($file, json_encode($limits, JSON_PRETTY_PRINT));
|
||||||
} catch (FilesystemException $e) {
|
} catch (FilesystemException $e) {
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ return [
|
|||||||
// see cer.php for exchange rates feature flag.
|
// see cer.php for exchange rates feature flag.
|
||||||
],
|
],
|
||||||
'version' => 'develop/2025-10-26',
|
'version' => 'develop/2025-10-26',
|
||||||
'build_time' => 1761467848,
|
'build_time' => 1761469088,
|
||||||
'api_version' => '2.1.0', // field is no longer used.
|
'api_version' => '2.1.0', // field is no longer used.
|
||||||
'db_version' => 28, // field is no longer used.
|
'db_version' => 28, // field is no longer used.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user