|
@@ -325,6 +325,15 @@ namespace MediaBrowser.Server.Startup.Common
|
|
|
|
|
|
await MediaEncoder.Init().ConfigureAwait(false);
|
|
|
|
|
|
+ if (string.IsNullOrWhiteSpace(MediaEncoder.EncoderPath))
|
|
|
+ {
|
|
|
+ if (ServerConfigurationManager.Configuration.IsStartupWizardCompleted)
|
|
|
+ {
|
|
|
+ ServerConfigurationManager.Configuration.IsStartupWizardCompleted = false;
|
|
|
+ ServerConfigurationManager.SaveConfiguration();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
Logger.Info("ServerId: {0}", SystemId);
|
|
|
Logger.Info("Core startup complete");
|
|
|
HttpServer.GlobalResponse = null;
|