mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-17 05:00:24 +01:00
fix foreign language fallback for moviedb
This commit is contained in:
@@ -92,7 +92,7 @@ namespace MediaBrowser.Model.ApiClient
|
||||
var existing = list[index];
|
||||
|
||||
// Merge the data
|
||||
existing.IsOffline = user.IsOffline;
|
||||
existing.IsSignedInOffline = user.IsSignedInOffline;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user