mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
refactor(ServicesToaster): add more checks when suppressing trakt addon installed error
This commit is contained in:
parent
758347076a
commit
d1819f4bd6
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ const ServicesToaster = () => {
|
|||
break;
|
||||
}
|
||||
|
||||
if (args.source.event === 'AddonInstalled' && args.source.args.transport_url.startsWith('https://www.strem.io/trakt/addon')) {
|
||||
if (args.error.type === 'Other' && args.error.code === 3 && args.source.event === 'AddonInstalled' && args.source.args.transport_url.startsWith('https://www.strem.io/trakt/addon')) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue