Handle UNC paths correctly in bootstrap.js#66128
Conversation
|
@the-ress thanks, this actually seems to fix not being able to launch VSCode from a UNC path in general (not just portable). |
|
@bpasero I have checked, and found that |
|
@fbehrens when I tried it worked for me, I used a localhost UNC path (see https://stackoverflow.com/questions/2787203/unc-path-to-a-folder-on-my-local-computer), opened it in Windows explorer, copied Code over and tried to start it. This works after this change but not before this change. |
|
@the-ress thanks for mentioning, that's working indeed. When invoking This is because of the spaces. I suggest to remove the spaces from the |
|
|
uriFromPathnow converts\\computer\share\pathintofile://computer/share/pathinstead of incorrectfile:////computer/share/pathFixes #53857