Fix nullable string usage.

pull/3137/head
crobibero 4 years ago
parent 5f1b1dc3cc
commit ef49e2b21c

@ -81,7 +81,7 @@ namespace MediaBrowser.LocalMetadata.Parsers
var id = info.Key + "Id";
if (!_validProviderIds.ContainsKey(id))
{
_validProviderIds.Add(id, info.Key);
_validProviderIds.Add(id, info.Key!);
}
}

Loading…
Cancel
Save