From 75f6c82d197247dbfc3dde8b195140738bc95b9c Mon Sep 17 00:00:00 2001 From: HynoR <20227709+HynoR@users.noreply.github.com> Date: Tue, 2 Dec 2025 12:06:54 +0800 Subject: [PATCH] fix: Enhance error handling for additional HTTP status codes in RequestHttp class --- frontend/src/api/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/api/index.ts b/frontend/src/api/index.ts index 7c2a956e8e0b..094933cbce70 100644 --- a/frontend/src/api/index.ts +++ b/frontend/src/api/index.ts @@ -103,6 +103,8 @@ class RequestHttp { router.push({ name: 'Expired' }); return; case 500: + case 502: + case 524: case 407: checkStatus( response.status,