mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
made RegisterResources a Task
This commit is contained in:
@@ -95,9 +95,9 @@ namespace MediaBrowser.ServerApplication
|
||||
/// <summary>
|
||||
/// Registers resources that classes will depend on
|
||||
/// </summary>
|
||||
protected override void RegisterResources()
|
||||
protected override async Task RegisterResources()
|
||||
{
|
||||
base.RegisterResources();
|
||||
await base.RegisterResources().ConfigureAwait(false);
|
||||
|
||||
RegisterSingleInstance<IServerApplicationPaths>(ApplicationPaths);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user