Skip to content

Commit

Permalink
[HOTFIX][FE]: Another left... (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicklas373 committed May 12, 2024
2 parents 77ca96a + 0d5c72d commit 07d6710
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Helpers/NotificationHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function sendRouteErrNotify($processId, $status, $errReason, $errRoute, $errCode
DB::table('appLogs')->insert([
'processId' => $processId,
'errReason' => null,
'errApiReason' => null,
'errStatus' => null,
]);
DB::table('notifyLogs')->insert([
'processId' => $processId,
Expand All @@ -61,7 +61,7 @@ function sendRouteErrNotify($processId, $status, $errReason, $errRoute, $errCode
DB::table('appLogs')->insert([
'processId' => $processId,
'errReason' => 'TelegramResponseException',
'errApiReason' => $e->getMessage(),
'errStatus' => $e->getMessage(),
]);
DB::table('notifyLogs')->insert([
'processId' => $processId,
Expand All @@ -78,7 +78,7 @@ function sendRouteErrNotify($processId, $status, $errReason, $errRoute, $errCode
DB::table('appLogs')->insert([
'processId' => $processId,
'errReason' => 'Unexpected handling exception !',
'errApiReason' => $e->getMessage(),
'errStatus' => $e->getMessage(),
]);
DB::table('notifyLogs')->insert([
'processId' => $processId,
Expand Down

0 comments on commit 07d6710

Please sign in to comment.