diff --git a/peertube-plugin-hello-world/client/common-client-plugin.js b/peertube-plugin-hello-world/client/common-client-plugin.js index ea916c1..5375717 100644 --- a/peertube-plugin-hello-world/client/common-client-plugin.js +++ b/peertube-plugin-hello-world/client/common-client-plugin.js @@ -46,6 +46,17 @@ function register ({ registerHook, peertubeHelpers }) { handler: result => addSymbolToVideoNameResult(result, ':D') }) + registerHook({ + target: 'filter:internal.common.svg-icons.get-content.result', + handler: (result, params) => { + if (params.name === 'syndication') { + return '' + } + + return result + } + }) + // Router hooks registerHook({