mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-10 05:28:19 -05:00
@@ -221,11 +221,7 @@ export class ExtensionTipsService extends Disposable implements IExtensionTipsSe
|
||||
private _suggest(model: IModel): void {
|
||||
const uri = model.uri;
|
||||
|
||||
if (!uri) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (uri.scheme === Schemas.inMemory || uri.scheme === Schemas.internal || uri.scheme === Schemas.vscode) {
|
||||
if (!uri || uri.scheme !== Schemas.file) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user