Merge pull request #4220 from cptpiepmatz/fix-nano-not-opening-root-script-if-in-dir

UI: Fixed `nano` not correctly opening a script in root of a server if `cd`'d into a directory
This commit is contained in:
hydroflame 2022-10-12 23:58:59 -04:00 committed by GitHub
commit d0fe28f8fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -150,8 +150,12 @@ export function ls(args: (string | number | boolean)[], server: BaseServer): voi
return Terminal.error(`File is not on this server, connect to ${hostname} and try again`);
}
if (filename.startsWith("/")) filename = filename.slice(1);
// Terminal.getFilepath needs leading slash to correctly work here
if (prefix === "") filename = `/${filename}`;
const filepath = Terminal.getFilepath(`${prefix}${filename}`);
const code = toString(Terminal.getScript(filepath)?.code);
// Terminal.getScript also calls Terminal.getFilepath and therefore also
// needs the given parameter
const code = toString(Terminal.getScript(`${prefix}${filename}`)?.code);
Router.toScriptEditor({ [filepath]: code });
}