Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion webapp/packages/core-root/src/SessionExpireService.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* CloudBeaver - Cloud Database Manager
* Copyright (C) 2020-2025 DBeaver Corp and others
* Copyright (C) 2020-2026 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -46,6 +46,7 @@ export class SessionExpireService extends Bootstrap {
this.graphQLService.blockRequests(e);
this.isExpired = true;
this.onSessionExpire.execute();
window.location.reload();
}

private async sessionExpiredInterceptor(request: Promise<any>): Promise<any> {
Expand Down
Loading