OmdbProvider: Fix for empty json fields

This commit is contained in:
softworkz 2016-06-04 00:42:24 +02:00
parent 4a90b5b29d
commit 0e126533a4
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace MediaBrowser.Providers.Omdb
resultString = reader.ReadToEnd();
}
resultString = resultString.Replace("\"N/A\"", string.Empty);
resultString = resultString.Replace("\"N/A\"", "\"\"");
var result = _jsonSerializer.DeserializeFromString<RootObject>(resultString);