mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 22:08:27 +01:00
fix config startup
This commit is contained in:
@@ -277,19 +277,19 @@ namespace MediaBrowser.ServerApplication
|
||||
LogManager.RemoveConsoleOutput();
|
||||
}
|
||||
|
||||
public override Task Init(IProgress<double> progress)
|
||||
public override async Task Init(IProgress<double> progress)
|
||||
{
|
||||
PerformVersionMigration();
|
||||
|
||||
return base.Init(progress);
|
||||
await base.Init(progress).ConfigureAwait(false);
|
||||
|
||||
MigrateModularConfigurations();
|
||||
ApplyDefaultMetadataSettings();
|
||||
}
|
||||
|
||||
private void PerformVersionMigration()
|
||||
{
|
||||
DeleteDeprecatedModules();
|
||||
|
||||
MigrateModularConfigurations();
|
||||
ApplyDefaultMetadataSettings();
|
||||
}
|
||||
|
||||
private void MigrateModularConfigurations()
|
||||
|
||||
Reference in New Issue
Block a user