Make auto skip work with Kodi (#269)
* Make auto skip work with Kodi * Apply change to credits as well --------- Co-authored-by: TwistedUmbrellaX <twistedumbrella@gmail.com>
This commit is contained in:
parent
0685b343ec
commit
1c8b3ccbe1
@ -119,7 +119,7 @@ public class AutoSkip : IHostedService, IDisposable
|
|||||||
}
|
}
|
||||||
|
|
||||||
// only need for official Android TV App and jellyfin-kodi
|
// only need for official Android TV App and jellyfin-kodi
|
||||||
else if (session.Client != "Android TV" || session.Client != "Kodi")
|
else if (session.Client != "Android TV" && session.Client != "Kodi")
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -119,7 +119,7 @@ public class AutoSkipCredits : IHostedService, IDisposable
|
|||||||
}
|
}
|
||||||
|
|
||||||
// only need for official Android TV App and jellyfin-kodi
|
// only need for official Android TV App and jellyfin-kodi
|
||||||
else if (session.Client != "Android TV" || session.Client != "Kodi")
|
else if (session.Client != "Android TV" && session.Client != "Kodi")
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user