mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 01:53:52 +01:00
commit
c15acd0ebc
1 changed files with 8 additions and 1 deletions
|
|
@ -80,7 +80,14 @@ namespace Emby.Server.Implementations.Data
|
|||
AddColumn(db, "userdata", "SubtitleStreamIndex", "int", existingColumnNames);
|
||||
}, TransactionMode);
|
||||
|
||||
ImportUserDataIfNeeded(connection);
|
||||
try
|
||||
{
|
||||
ImportUserDataIfNeeded(connection);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.ErrorException("Error in ImportUserDataIfNeeded", ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue