mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-17 20:22:55 +00:00
suppress error toast for LibrarySyncWithAPIPlanned and anonymous users
This commit is contained in:
parent
1dd5b04204
commit
92fa3d53a5
1 changed files with 4 additions and 0 deletions
|
|
@ -15,6 +15,10 @@ const ServicesToaster = () => {
|
|||
break;
|
||||
}
|
||||
|
||||
if (args.source.event === 'LibrarySyncWithAPIPlanned' && args.source.args.uid === null) {
|
||||
break;
|
||||
}
|
||||
|
||||
toast.show({
|
||||
type: 'error',
|
||||
title: args.source.event,
|
||||
|
|
|
|||
Loading…
Reference in a new issue