1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed: Parsing of some Plex server responses before 1.3

This commit is contained in:
Mark McDowall 2016-12-02 10:39:12 -08:00
parent 4a149c356b
commit 43d85bf59d

View File

@ -97,12 +97,12 @@ public string Version(PlexServerSettings settings)
_logger.Trace("Version response: {0}", response.Content);
CheckForError(response, settings);
if (response.Content.Contains("MediaContainer"))
if (response.Content.Contains("_children"))
{
return Json.Deserialize<PlexResponse<PlexIdentity>>(response.Content).MediaContainer.Version;
return Json.Deserialize<PlexIdentity>(response.Content).Version;
}
return Json.Deserialize<PlexIdentity>(response.Content).Version;
return Json.Deserialize<PlexResponse<PlexIdentity>>(response.Content).MediaContainer.Version;
}
public List<PlexPreference> Preferences(PlexServerSettings settings)
@ -114,12 +114,12 @@ public List<PlexPreference> Preferences(PlexServerSettings settings)
_logger.Trace("Preferences response: {0}", response.Content);
CheckForError(response, settings);
if (response.Content.Contains("MediaContainer"))
if (response.Content.Contains("_children"))
{
return Json.Deserialize<PlexResponse<PlexPreferences>>(response.Content).MediaContainer.Preferences;
return Json.Deserialize<PlexPreferencesLegacy>(response.Content).Preferences;
}
return Json.Deserialize<PlexPreferencesLegacy>(response.Content).Preferences;
return Json.Deserialize<PlexResponse<PlexPreferences>>(response.Content).MediaContainer.Preferences;
}
public int? GetMetadataId(int sectionId, int tvdbId, string language, PlexServerSettings settings)
@ -240,9 +240,9 @@ private void CheckForError(IRestResponse response, PlexServerSettings settings)
throw new PlexAuthenticationException("Unauthorized - Username or password is incorrect");
}
var error = response.Content.Contains("MediaContainer") ?
Json.Deserialize<PlexResponse<PlexError>>(response.Content).MediaContainer :
Json.Deserialize<PlexError>(response.Content);
var error = response.Content.Contains("_children") ?
Json.Deserialize<PlexError>(response.Content) :
Json.Deserialize<PlexResponse<PlexError>>(response.Content).MediaContainer;
if (error != null && !error.Error.IsNullOrWhiteSpace())
{