Browse Source

fix scanning libraries (#2062)

pull/1898/merge
Jason Dove 18 hours ago committed by GitHub
parent
commit
9267edbcc9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      ErsatzTV.Scanner/Program.cs

2
ErsatzTV.Scanner/Program.cs

@ -16,6 +16,7 @@ using ErsatzTV.Core.Interfaces.Search; @@ -16,6 +16,7 @@ using ErsatzTV.Core.Interfaces.Search;
using ErsatzTV.Core.Jellyfin;
using ErsatzTV.Core.Metadata;
using ErsatzTV.Core.Plex;
using ErsatzTV.Core.Search;
using ErsatzTV.FFmpeg.Runtime;
using ErsatzTV.Infrastructure.Data;
using ErsatzTV.Infrastructure.Data.Repositories;
@ -231,6 +232,7 @@ public class Program @@ -231,6 +232,7 @@ public class Program
services.AddSingleton<IPlexSecretStore, PlexSecretStore>();
services.AddSingleton<IEmbySecretStore, EmbySecretStore>();
services.AddSingleton<IJellyfinSecretStore, JellyfinSecretStore>();
services.AddSingleton<ISmartCollectionCache, SmartCollectionCache>();
services.AddSingleton<SearchQueryParser>();
services.AddSingleton<ISearchIndex, LuceneSearchIndex>();
services.AddSingleton<RecyclableMemoryStreamManager>();

Loading…
Cancel
Save