mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
refactor(ServicesToaster): prevent installed trakt addon toast error
This commit is contained in:
parent
650ada3f8e
commit
b9e826553c
1 changed files with 4 additions and 0 deletions
|
|
@ -19,6 +19,10 @@ const ServicesToaster = () => {
|
|||
break;
|
||||
}
|
||||
|
||||
if (args.source.event === 'AddonInstalled' && args.source.args.transport_url.startsWith('https://www.strem.io/trakt/addon')) {
|
||||
break;
|
||||
}
|
||||
|
||||
toast.show({
|
||||
type: 'error',
|
||||
title: args.source.event,
|
||||
|
|
|
|||
Loading…
Reference in a new issue