File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export class Storage implements Disposable {
82
82
if ( prefix == null || key === prefix || key . startsWith ( `${ prefix } :` ) ) {
83
83
if ( exclude ?. includes ( key ) ) continue ;
84
84
85
- await this . context . globalState . update ( key , undefined ) ;
85
+ await this . context . globalState . update ( qualifiedKey , undefined ) ;
86
86
this . _onDidChange . fire ( { key : key , workspace : false } ) ;
87
87
}
88
88
}
@@ -147,7 +147,7 @@ export class Storage implements Disposable {
147
147
if ( prefix == null || key === prefix || key . startsWith ( `${ prefix } :` ) ) {
148
148
if ( exclude ?. includes ( key ) ) continue ;
149
149
150
- await this . context . workspaceState . update ( key , undefined ) ;
150
+ await this . context . workspaceState . update ( qualifiedKey , undefined ) ;
151
151
this . _onDidChange . fire ( { key : key , workspace : true } ) ;
152
152
}
153
153
}
You can’t perform that action at this time.
0 commit comments