aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Moshe Gross <77084755+MosheGross@users.noreply.github.com>2021-03-16 17:30:09 +0000
committerLibravatar GitHub <noreply@github.com>2021-03-16 18:30:09 +0100
commit581c46168e7e5e82ea8edf5e0f6c7f92a4210380 (patch)
tree4e63fc3fc272cf9f9d7b1ebf06ecb14ad34bc5d5 /src
parentNew Crowdin updates (#1218) (diff)
downloadferdium-app-581c46168e7e5e82ea8edf5e0f6c7f92a4210380.tar.gz
ferdium-app-581c46168e7e5e82ea8edf5e0f6c7f92a4210380.tar.zst
ferdium-app-581c46168e7e5e82ea8edf5e0f6c7f92a4210380.zip
Change Search with Google link in context menu (#1240)
Change the Google Search link in the context menu from https://www.google.com/#q=searchterm to https://www.google.com/search?q=Mollie
Diffstat (limited to 'src')
-rw-r--r--src/webview/contextMenuBuilder.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview/contextMenuBuilder.js b/src/webview/contextMenuBuilder.js
index d99dd6739..7980e5344 100644
--- a/src/webview/contextMenuBuilder.js
+++ b/src/webview/contextMenuBuilder.js
@@ -275,7 +275,7 @@ module.exports = class ContextMenuBuilder {
275 const search = new MenuItem({ 275 const search = new MenuItem({
276 label: this.stringTable.searchGoogle(), 276 label: this.stringTable.searchGoogle(),
277 click: () => { 277 click: () => {
278 const url = `https://www.google.com/#q=${encodeURIComponent(menuInfo.selectionText)}`; 278 const url = `https://www.google.com/search?q=${encodeURIComponent(menuInfo.selectionText)}`;
279 279
280 shell.openExternal(url); 280 shell.openExternal(url);
281 }, 281 },