mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
fix(App): ignore 3 slashes deeplinks for shell open-media
This commit is contained in:
parent
eb3fad32f1
commit
383928e792
1 changed files with 1 additions and 0 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue