From 383928e7923f56083f83f3e75658d34ae1106251 Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 20 Mar 2025 11:22:27 +0100 Subject: [PATCH] fix(App): ignore 3 slashes deeplinks for shell open-media --- src/App/App.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App/App.js b/src/App/App.js index b5f8eb045..803515b09 100644 --- a/src/App/App.js +++ b/src/App/App.js @@ -107,6 +107,7 @@ const App = () => { }; const onOpenMedia = (data) => { + if (data.startsWith('stremio:///')) return; if (data.startsWith('stremio://')) { const transportUrl = data.replace('stremio://', 'https://'); if (URL.canParse(transportUrl)) {