From 076a4f2574a4bd83665182933340505080e45b77 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Thu, 9 May 2024 23:14:26 +0300 Subject: [PATCH] Fix class name for AppIndexerMapRepository --- src/NzbDrone.Core/Applications/AppIndexerMapRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Applications/AppIndexerMapRepository.cs b/src/NzbDrone.Core/Applications/AppIndexerMapRepository.cs index ff966b196..349e50622 100644 --- a/src/NzbDrone.Core/Applications/AppIndexerMapRepository.cs +++ b/src/NzbDrone.Core/Applications/AppIndexerMapRepository.cs @@ -10,9 +10,9 @@ namespace NzbDrone.Core.Applications void DeleteAllForApp(int appId); } - public class TagRepository : BasicRepository, IAppIndexerMapRepository + public class AppIndexerMapRepository : BasicRepository, IAppIndexerMapRepository { - public TagRepository(IMainDatabase database, IEventAggregator eventAggregator) + public AppIndexerMapRepository(IMainDatabase database, IEventAggregator eventAggregator) : base(database, eventAggregator) { }