Fix error detection in emby widget

This commit is contained in:
Michael Shamoon 2022-11-05 21:43:59 -07:00
parent 57fef06931
commit b25ba09e18

View file

@ -171,7 +171,7 @@ export default function Component({ service }) {
});
}
if (sessionsError) {
if (sessionsError || sessionsData?.error) {
return <Container error={t("widget.api_error")} />;
}