mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
updated translations
This commit is contained in:
@@ -899,7 +899,7 @@ namespace MediaBrowser.Server.Implementations.Session
|
||||
{
|
||||
var folder = (Folder)item;
|
||||
|
||||
var items = user == null ?
|
||||
var items = user == null ?
|
||||
folder.GetRecursiveChildren(i => !i.IsFolder) :
|
||||
folder.GetRecursiveChildren(user, i => !i.IsFolder);
|
||||
|
||||
@@ -1355,7 +1355,14 @@ namespace MediaBrowser.Server.Implementations.Session
|
||||
|
||||
if (saveCapabilities)
|
||||
{
|
||||
await SaveCapabilities(session.DeviceId, capabilities).ConfigureAwait(false);
|
||||
try
|
||||
{
|
||||
await SaveCapabilities(session.DeviceId, capabilities).ConfigureAwait(false);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.ErrorException("Error saving device capabilities", ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user