File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -172,13 +172,15 @@ export class WorkspaceMonitor implements vscode.Disposable {
172
172
private maybeNotifyOutdated ( workspace : Workspace ) {
173
173
if ( ! this . notifiedOutdated && workspace . outdated ) {
174
174
this . notifiedOutdated = true ;
175
-
175
+
176
176
// Check if update notifications are disabled
177
- const disableNotifications = vscode . workspace . getConfiguration ( "coder" ) . get < boolean > ( "disableUpdateNotifications" , false ) ;
177
+ const disableNotifications = vscode . workspace
178
+ . getConfiguration ( "coder" )
179
+ . get < boolean > ( "disableUpdateNotifications" , false ) ;
178
180
if ( disableNotifications ) {
179
181
return ;
180
182
}
181
-
183
+
182
184
this . restClient
183
185
. getTemplate ( workspace . template_id )
184
186
. then ( ( template ) => {
You can’t perform that action at this time.
0 commit comments