Browse Source

fix scanning libraries (#2062)

pull/2064/head
Jason Dove 1 month 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;
using ErsatzTV.Core.Jellyfin; using ErsatzTV.Core.Jellyfin;
using ErsatzTV.Core.Metadata; using ErsatzTV.Core.Metadata;
using ErsatzTV.Core.Plex; using ErsatzTV.Core.Plex;
using ErsatzTV.Core.Search;
using ErsatzTV.FFmpeg.Runtime; using ErsatzTV.FFmpeg.Runtime;
using ErsatzTV.Infrastructure.Data; using ErsatzTV.Infrastructure.Data;
using ErsatzTV.Infrastructure.Data.Repositories; using ErsatzTV.Infrastructure.Data.Repositories;
@ -231,6 +232,7 @@ public class Program
services.AddSingleton<IPlexSecretStore, PlexSecretStore>(); services.AddSingleton<IPlexSecretStore, PlexSecretStore>();
services.AddSingleton<IEmbySecretStore, EmbySecretStore>(); services.AddSingleton<IEmbySecretStore, EmbySecretStore>();
services.AddSingleton<IJellyfinSecretStore, JellyfinSecretStore>(); services.AddSingleton<IJellyfinSecretStore, JellyfinSecretStore>();
services.AddSingleton<ISmartCollectionCache, SmartCollectionCache>();
services.AddSingleton<SearchQueryParser>(); services.AddSingleton<SearchQueryParser>();
services.AddSingleton<ISearchIndex, LuceneSearchIndex>(); services.AddSingleton<ISearchIndex, LuceneSearchIndex>();
services.AddSingleton<RecyclableMemoryStreamManager>(); services.AddSingleton<RecyclableMemoryStreamManager>();

Loading…
Cancel
Save