Fixed: Raise ApplicationStartupEvent after Owin is running.

This commit is contained in:
Taloth Saldono 2017-10-23 20:15:27 +02:00
parent 090dd45541
commit f53cad822a
2 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,6 @@ namespace NzbDrone.Api
RegisterPipelines(pipelines);
container.Resolve<DatabaseTarget>().Register();
container.Resolve<IEventAggregator>().PublishEvent(new ApplicationStartedEvent());
}
private void RegisterPipelines(IPipelines pipelines)
@ -56,4 +55,4 @@ namespace NzbDrone.Api
protected override byte[] FavIcon => null;
}
}
}

View File

@ -65,6 +65,8 @@ namespace NzbDrone.Host
{
_browserService.LaunchWebUI();
}
_container.Resolve<IEventAggregator>().PublishEvent(new ApplicationStartedEvent());
}
protected override void OnStop()