mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
Fix nullability errors in MediaBrowser.LocalMetadata
This commit is contained in:
@@ -683,7 +683,7 @@ namespace MediaBrowser.LocalMetadata.Parsers
|
||||
default:
|
||||
{
|
||||
string readerName = reader.Name;
|
||||
if (_validProviderIds!.TryGetValue(readerName, out string providerIdValue))
|
||||
if (_validProviderIds!.TryGetValue(readerName, out string? providerIdValue))
|
||||
{
|
||||
var id = reader.ReadElementContentAsString();
|
||||
if (!string.IsNullOrWhiteSpace(id))
|
||||
|
||||
Reference in New Issue
Block a user