From 209a0238f9f44d229f17b4da86a4ee8c3240de3f Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sun, 25 Jul 2021 02:17:03 +0200 Subject: [PATCH] Fixing the tvdb for movies --- Kyoo.TheTvdb/ProviderTvdb.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Kyoo.TheTvdb/ProviderTvdb.cs b/Kyoo.TheTvdb/ProviderTvdb.cs index 892e8125..47183fb7 100644 --- a/Kyoo.TheTvdb/ProviderTvdb.cs +++ b/Kyoo.TheTvdb/ProviderTvdb.cs @@ -79,6 +79,9 @@ namespace Kyoo.TheTvdb [ItemCanBeNull] private async Task _GetShow([NotNull] Show show) { + if (show.IsMovie) + return null; + if (!int.TryParse(show.GetID(Provider.Slug), out int id)) { Show found = (await _SearchShow(show.Title)).FirstOrDefault();