From 82b725b668742a8a851ddc4f3c8fb5f80cd81b5e Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Mon, 8 Jan 2024 10:10:15 +0100 Subject: [PATCH] Update fileManager.ts --- apps/remix-ide/src/app/files/fileManager.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/src/app/files/fileManager.ts b/apps/remix-ide/src/app/files/fileManager.ts index aaedc9d774..803073c5c6 100644 --- a/apps/remix-ide/src/app/files/fileManager.ts +++ b/apps/remix-ide/src/app/files/fileManager.ts @@ -192,8 +192,8 @@ class FileManager extends Plugin { path = this.normalize(path) path = this.limitPluginScope(path) path = this.getPathFromUrl(path).file - //await this._handleExists(path, `Cannot open file ${path}`) - //await this._handleIsFile(path, `Cannot open file ${path}`) + await this._handleExists(path, `Cannot open file ${path}`) + await this._handleIsFile(path, `Cannot open file ${path}`) await this.openFile(path) }