We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a524ad commit 69b1011Copy full SHA for 69b1011
src/main/index.js
@@ -94,7 +94,7 @@ function runApp() {
94
const path = urlParts[1]
95
96
if (path) {
97
- visible = ['/channel', '/watch'].some(p => path.startsWith(p)) ||
+ visible = ['/channel', '/watch', '/hashtag'].some(p => path.startsWith(p)) ||
98
// Only show copy link entry for non user playlists
99
(path.startsWith('/playlist') && !/playlistType=user/.test(path))
100
}
@@ -131,6 +131,8 @@ function runApp() {
131
return `${origin}/playlist?list=${id}`
132
case 'channel':
133
return `${origin}/channel/${id}`
134
+ case 'hashtag':
135
+ return `${origin}/hashtag/${id}`
136
case 'watch': {
137
let url
138
0 commit comments