fix foreign language fallback for moviedb

This commit is contained in:
Luke Pulverenti
2015-01-30 22:19:41 -05:00
parent 50a346fe5a
commit 75a46393f0
10 changed files with 85 additions and 44 deletions

View File

@@ -92,7 +92,7 @@ namespace MediaBrowser.Model.ApiClient
var existing = list[index];
// Merge the data
existing.IsOffline = user.IsOffline;
existing.IsSignedInOffline = user.IsSignedInOffline;
}
else
{

View File

@@ -4,6 +4,6 @@ namespace MediaBrowser.Model.ApiClient
public class ServerUserInfo
{
public string Id { get; set; }
public bool IsOffline { get; set; }
public bool IsSignedInOffline { get; set; }
}
}

View File

@@ -26,7 +26,14 @@ namespace MediaBrowser.Model.Dto
/// </summary>
/// <value>The server identifier.</value>
public string ServerId { get; set; }
/// <summary>
/// Gets or sets the name of the server.
/// This is not used by the server and is for client-side usage only.
/// </summary>
/// <value>The name of the server.</value>
public string ServerName { get; set; }
/// <summary>
/// Gets or sets the name of the connect user.
/// </summary>