mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 17:15:48 +00:00
Merge pull request #868 from Stremio/fix/apple-app-site-association
Some checks failed
Build / build (push) Has been cancelled
Some checks failed
Build / build (push) Has been cancelled
Fix: Add wildcard for apple site-app associated domains
This commit is contained in:
commit
5b94c92878
1 changed files with 16 additions and 6 deletions
|
|
@ -4,30 +4,40 @@
|
|||
"details": [
|
||||
{
|
||||
"appID": "9EWRZ4QP3J.com.stremio.one",
|
||||
"paths": [
|
||||
"/",
|
||||
"/#/player/*",
|
||||
"/#/discover/*",
|
||||
"/#/detail/*",
|
||||
"/#/library/*",
|
||||
"/#/addons/*",
|
||||
"/#/settings",
|
||||
"/#/search/*"
|
||||
],
|
||||
"components": [
|
||||
{
|
||||
"/": "/",
|
||||
"#": "/player",
|
||||
"#": "/player/*",
|
||||
"comment": "Matches deep link for player"
|
||||
},
|
||||
{
|
||||
"/": "/",
|
||||
"#": "/discover",
|
||||
"#": "/discover/*",
|
||||
"comment": "Matches deep link for discover"
|
||||
},
|
||||
{
|
||||
"/": "/",
|
||||
"#": "/detail",
|
||||
"#": "/detail/*",
|
||||
"comment": "Matches deep link for detail"
|
||||
},
|
||||
{
|
||||
"/": "/",
|
||||
"#": "/library",
|
||||
"#": "/library/*",
|
||||
"comment": "Matches deep link for library"
|
||||
},
|
||||
{
|
||||
"/": "/",
|
||||
"#": "/addons",
|
||||
"#": "/addons/*",
|
||||
"comment": "Matches deep link for addons"
|
||||
},
|
||||
{
|
||||
|
|
@ -37,7 +47,7 @@
|
|||
},
|
||||
{
|
||||
"/": "/",
|
||||
"#": "/search",
|
||||
"#": "/search/*",
|
||||
"comment": "Matches deep link for search"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue