mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-07 09:01:36 -04:00
Merge pull request #1804 from softworkz/OmdbCleanResult
OmdbProvider: Fix for empty json fields
This commit is contained in:
commit
7cf424303b
@ -56,7 +56,7 @@ namespace MediaBrowser.Providers.Omdb
|
|||||||
resultString = reader.ReadToEnd();
|
resultString = reader.ReadToEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
resultString = resultString.Replace("\"N/A\"", string.Empty);
|
resultString = resultString.Replace("\"N/A\"", "\"\"");
|
||||||
|
|
||||||
var result = _jsonSerializer.DeserializeFromString<RootObject>(resultString);
|
var result = _jsonSerializer.DeserializeFromString<RootObject>(resultString);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user