diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9aee91c..4222a57 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,8 +17,8 @@ env: # Disable sending usage data to Microsoft DOTNET_CLI_TELEMETRY_OPTOUT: true PLUGIN_NAME: Lidarr.Plugin.Deemix - PLUGIN_VERSION: 1.0.2.${{ github.run_number }} - MINIMUM_LIDARR_VERSION: 2.9.4.4538 + PLUGIN_VERSION: 1.0.3.${{ github.run_number }} + MINIMUM_LIDARR_VERSION: 2.13.0.4664 DOTNET_VERSION: 6.0.427 jobs: diff --git a/src/Lidarr b/src/Lidarr index 61aa177..aa7b63f 160000 --- a/src/Lidarr +++ b/src/Lidarr @@ -1 +1 @@ -Subproject commit 61aa177fe7c7a157d20992939caa888f9ba4c0eb +Subproject commit aa7b63f2e13351f54a31d780d6a7b93a2411eaec diff --git a/src/Lidarr.Plugin.Deemix/Download/Clients/Deemix/Deemix.cs b/src/Lidarr.Plugin.Deemix/Download/Clients/Deemix/Deemix.cs index 19fefb6..11f6973 100644 --- a/src/Lidarr.Plugin.Deemix/Download/Clients/Deemix/Deemix.cs +++ b/src/Lidarr.Plugin.Deemix/Download/Clients/Deemix/Deemix.cs @@ -8,6 +8,7 @@ using NzbDrone.Common.Http; using NzbDrone.Core.Configuration; using NzbDrone.Core.Indexers; +using NzbDrone.Core.Localization; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.RemotePathMappings; using NzbDrone.Core.Validation; @@ -22,8 +23,9 @@ public Deemix(IDeemixProxy proxy, IConfigService configService, IDiskProvider diskProvider, IRemotePathMappingService remotePathMappingService, + ILocalizationService localizationService, Logger logger) - : base(configService, diskProvider, remotePathMappingService, logger) + : base(configService, diskProvider, remotePathMappingService, localizationService, logger) { _proxy = proxy; }