fix(App): ignore 3 slashes deeplinks for shell open-media

This commit is contained in:
Tim 2025-03-20 11:22:27 +01:00
parent eb3fad32f1
commit 383928e792

View file

@ -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)) {