We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3d23b commit b5cabe7Copy full SHA for b5cabe7
src/phpDebug.ts
@@ -198,7 +198,7 @@ class PhpDebugSession extends vscode.DebugSession {
198
/** converts a server-side XDebug file URI to a local path for VS Code with respect to source root settings */
199
protected convertDebuggerPathToClient(fileUri: string): string {
200
// convert the file URI to a path
201
- const serverPath = url.parse(fileUri).pathname.substr(1);
+ const serverPath = decodeURI(url.parse(fileUri).pathname.substr(1));
202
let localPath: string;
203
if (this._args.serverSourceRoot && this._args.localSourceRoot) {
204
// get the part of the path that is relative to the source root
0 commit comments