Skip to content

Commit 623c568

Browse files
committed
Bug fix
1 parent 9c91cee commit 623c568

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/modules/auth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ export async function bulkLoad(fields = [], usr = null, pwd = null, isAdmin = fa
798798
if ((fetchedBulkLoad.error === "Access denied.") || (fetchedBulkLoad.message === "Access denied.")) ifAccessDenied();
799799
return false;
800800
}
801-
if (fetchedBulkLoad.maintenanceMode) {
801+
if (fetchedBulkLoad.maintenanceMode && (window.location.pathName !== '/admin/logs')) {
802802
ui.startLoader();
803803
ui.view("maintenance-mode");
804804
return false;

0 commit comments

Comments
 (0)