diff --git a/CHANGELOG.md b/CHANGELOG.md index ed39b1d35..b1de910f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Build osx-arm64 packages on release +### Changed +- No longer warn about local Plex guids; they aren't used for Trakt matching and can be ignored + ## [0.2.4-alpha] - 2021-11-13 ### Changed - Upgrade to dotnet 6 diff --git a/ErsatzTV.Core/ErsatzTV.Core.csproj b/ErsatzTV.Core/ErsatzTV.Core.csproj index 94d629edc..c87ff802c 100644 --- a/ErsatzTV.Core/ErsatzTV.Core.csproj +++ b/ErsatzTV.Core/ErsatzTV.Core.csproj @@ -18,7 +18,7 @@ - + diff --git a/ErsatzTV.Infrastructure/Plex/PlexServerApiClient.cs b/ErsatzTV.Infrastructure/Plex/PlexServerApiClient.cs index 8eb9ebae9..262bcd4b0 100644 --- a/ErsatzTV.Infrastructure/Plex/PlexServerApiClient.cs +++ b/ErsatzTV.Infrastructure/Plex/PlexServerApiClient.cs @@ -845,7 +845,14 @@ namespace ErsatzTV.Infrastructure.Plex return $"tmdb://{strip2}"; } - _logger.LogWarning("Unsupported guid format from Plex; ignoring: {Guid}", guid); + if (guid.StartsWith("local://")) + { + _logger.LogDebug("Ignoring local Plex guid: {Guid}", guid); + } + else + { + _logger.LogWarning("Unsupported guid format from Plex; ignoring: {Guid}", guid); + } return None; }