Skip to content

Commit 5204162

Browse files
committed
Fix #1040: Remote non-PowerShell files are not saved to server
1 parent f070e35 commit 5204162

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/features/RemoteFiles.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ export class RemoteFilesFeature implements IFeature {
5858
}
5959

6060
private isDocumentRemote(doc: vscode.TextDocument) {
61-
return doc.languageId === "powershell" &&
62-
doc.fileName.toLowerCase().startsWith(this.tempSessionPathPrefix);
61+
return doc.fileName.toLowerCase().startsWith(this.tempSessionPathPrefix);
6362
}
6463

6564
private closeRemoteFiles() {

0 commit comments

Comments
 (0)