Skip to content

Commit b800710

Browse files
committed
Merge branch 'master' into browser-ext-ui-update-test
2 parents 246768c + b637c2f commit b800710

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed

.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ jobs:
7070
steps:
7171
- name: Install gnome-keyring
7272
if: ${{ matrix.os=='ubuntu-latest' }}
73-
run: sudo apt-get install -y gnome-keyring dbus-x11
73+
run: |
74+
sudo apt-get update
75+
sudo apt-get install -y gnome-keyring dbus-x11
7476
7577
- name: Checkout repo
7678
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846

libs/common/src/services/api.service.ts

+14-10
Original file line numberDiff line numberDiff line change
@@ -2360,23 +2360,27 @@ export class ApiService implements ApiServiceAbstraction {
23602360
tokenError: boolean,
23612361
authed: boolean
23622362
): Promise<ErrorResponse> {
2363-
if (
2364-
authed &&
2365-
((tokenError && response.status === 400) ||
2366-
response.status === 401 ||
2367-
response.status === 403)
2368-
) {
2369-
await this.logoutCallback(true);
2370-
return null;
2371-
}
2372-
23732363
let responseJson: any = null;
23742364
if (this.isJsonResponse(response)) {
23752365
responseJson = await response.json();
23762366
} else if (this.isTextResponse(response)) {
23772367
responseJson = { Message: await response.text() };
23782368
}
23792369

2370+
if (authed) {
2371+
if (
2372+
response.status === 401 ||
2373+
response.status === 403 ||
2374+
(tokenError &&
2375+
response.status === 400 &&
2376+
responseJson != null &&
2377+
responseJson.error === "invalid_grant")
2378+
) {
2379+
await this.logoutCallback(true);
2380+
return null;
2381+
}
2382+
}
2383+
23802384
return new ErrorResponse(responseJson, response.status, tokenError);
23812385
}
23822386

0 commit comments

Comments
 (0)