Browse Source

[API] Added missing route not found error for /get/logs/

ntimo 6 years ago
parent
commit
08350d9a95
1 changed files with 7 additions and 0 deletions
  1. 7 0
      data/web/json_api.php

+ 7 - 0
data/web/json_api.php

@@ -589,6 +589,13 @@ if (isset($_SESSION['mailcow_cc_role']) || isset($_SESSION['pending_mailcow_cc_u
                 }
                 echo (isset($logs) && !empty($logs)) ? json_encode($logs, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) : '{}';
               break;
+              default:
+                http_response_code(404);
+                echo json_encode(array(
+                  'type' => 'error',
+                  'msg' => 'route not found'
+                ));
+                die();
             }
           break;
           case "mailbox":