Skip to content

Commit

Permalink
Fixed: Missing argument for FromDownloadClient
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Apr 7, 2024
1 parent a44ff64 commit 48c4376
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ env:
# Disable sending usage data to Microsoft
DOTNET_CLI_TELEMETRY_OPTOUT: true
PLUGIN_NAME: Lidarr.Plugin.Deemix
PLUGIN_VERSION: 1.0.0.${{ github.run_number }}
MINIMUM_LIDARR_VERSION: 1.3.5.3499
DOTNET_VERSION: 6.0.408
PLUGIN_VERSION: 1.0.1.${{ github.run_number }}
MINIMUM_LIDARR_VERSION: 2.2.4.4129
DOTNET_VERSION: 6.0.417

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion src/Lidarr
Submodule Lidarr updated 962 files
2 changes: 1 addition & 1 deletion src/Lidarr.Plugin.Deemix/Download/Clients/Deemix/Deemix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public override IEnumerable<DownloadClientItem> GetItems()

foreach (var item in queue)
{
item.DownloadClientInfo = DownloadClientItemClientInfo.FromDownloadClient(this);
item.DownloadClientInfo = DownloadClientItemClientInfo.FromDownloadClient(this, false);
item.OutputPath = _remotePathMappingService.RemapRemoteToLocal(Settings.Host, item.OutputPath);
}

Expand Down

0 comments on commit 48c4376

Please sign in to comment.