Skip to content

Commit

Permalink
Fix PR #1336 (#1356)
Browse files Browse the repository at this point in the history
* Fix PR #1336

* Fix CI
  • Loading branch information
gjsjohnmurray committed Jul 8, 2024
1 parent 530c3ad commit 6587f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugins/connection-manager/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class ConnectionManagerPlugin implements IExtensionPlugin {
if (Config.sessionFilesFolder && Config.sessionFilesFolder != '') {
baseFolder = Uri.file(Config.sessionFilesFolder);
if(!path.isAbsolute(Config.sessionFilesFolder) && workspace.workspaceFolders && workspace.workspaceFolders.length){
baseFolder = path.resolve(workspace.workspaceFolders[0].uri, Config.sessionFilesFolder)
baseFolder = Uri.joinPath(workspace.workspaceFolders[0].uri, Config.sessionFilesFolder)
}
}

Expand Down

0 comments on commit 6587f11

Please sign in to comment.