Merge pull request #301 from greyhoof/browser-option

Browser option URL handling improvements
This commit is contained in:
hearmeneigh 2023-12-16 14:15:15 -08:00 committed by GitHub
commit c4c6d9c83d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 8 deletions

View File

@ -188,14 +188,15 @@ function openURLExternally(linkUrl: string): void {
} }
if (fileIsExecutable) { if (fileIsExecutable) {
// check if URL is already encoded // regular expression that looks for an encoded % symbol followed by two hexadecimal characters
// (this should work almost all the time, but there might be edge-cases with very unusual URLs) // using this expression, we can find parts of the URL that were encoded twice
let isEncoded = (linkUrl !== decodeURI(linkUrl)); const re = new RegExp('%25([0-9a-f]{2})', 'ig');
// only encode URL if it isn't encoded yet
if (!isEncoded) { // encode the URL no matter what
// encode URL so if it contains spaces, it remains a single argument for the browser linkUrl = encodeURI(linkUrl);
linkUrl = encodeURI(linkUrl);
} // eliminate double-encoding using expression above
linkUrl = linkUrl.replace(re, '%$1');
if (!settings.browserArgs.includes('%s')) { if (!settings.browserArgs.includes('%s')) {
// append %s to params if it is not already there // append %s to params if it is not already there