diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-10 12:19:19 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-10 12:19:19 +0900 |
| commit | 94ce658ab977b794b30624ff44781f61be10b06b (patch) | |
| tree | 0752a821f740bb7bba742936765ade0476611c9b /src/text | |
| parent | 2.35.3 (diff) | |
| download | misskey-94ce658ab977b794b30624ff44781f61be10b06b.tar.gz misskey-94ce658ab977b794b30624ff44781f61be10b06b.tar.bz2 misskey-94ce658ab977b794b30624ff44781f61be10b06b.zip | |
ハッシュタグ検索を実装
Diffstat (limited to 'src/text')
| -rw-r--r-- | src/text/html.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text/html.ts b/src/text/html.ts index 53d4e8a52d..70b341689a 100644 --- a/src/text/html.ts +++ b/src/text/html.ts @@ -25,7 +25,7 @@ const handlers = { hashtag({ document }, { hashtag }) { const a = document.createElement('a'); - a.href = config.url + '/search?q=#' + hashtag; + a.href = config.url + '/tags/' + hashtag; a.textContent = '#' + hashtag; a.setAttribute('rel', 'tag'); document.body.appendChild(a); |