summaryrefslogtreecommitdiff
path: root/src/mfm
diff options
context:
space:
mode:
Diffstat (limited to 'src/mfm')
-rw-r--r--src/mfm/to-html.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mfm/to-html.ts b/src/mfm/to-html.ts
index 9376889829..5b21384608 100644
--- a/src/mfm/to-html.ts
+++ b/src/mfm/to-html.ts
@@ -171,7 +171,7 @@ export function toHtml(tokens: MfmForest | null, mentionedRemoteUsers: IMentione
search(token) {
const a = doc.createElement('a');
- a.href = `https://www.google.com/?#q=${token.node.props.query}`;
+ a.href = `https://www.google.com/search?q=${token.node.props.query}`;
a.textContent = token.node.props.content;
return a;
}