File tree 2 files changed +17
-11
lines changed
2 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 70
70
steps :
71
71
- name : Install gnome-keyring
72
72
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
74
76
75
77
- name : Checkout repo
76
78
uses : actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846
Original file line number Diff line number Diff line change @@ -2360,23 +2360,27 @@ export class ApiService implements ApiServiceAbstraction {
2360
2360
tokenError : boolean ,
2361
2361
authed : boolean
2362
2362
) : 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
-
2373
2363
let responseJson : any = null ;
2374
2364
if ( this . isJsonResponse ( response ) ) {
2375
2365
responseJson = await response . json ( ) ;
2376
2366
} else if ( this . isTextResponse ( response ) ) {
2377
2367
responseJson = { Message : await response . text ( ) } ;
2378
2368
}
2379
2369
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
+
2380
2384
return new ErrorResponse ( responseJson , response . status , tokenError ) ;
2381
2385
}
2382
2386
You can’t perform that action at this time.
0 commit comments