diff --git a/TwinpackShared/Protocol/Native/TwinpackServer.cs b/TwinpackShared/Protocol/Native/TwinpackServer.cs index c7488fc..70dec27 100644 --- a/TwinpackShared/Protocol/Native/TwinpackServer.cs +++ b/TwinpackShared/Protocol/Native/TwinpackServer.cs @@ -617,7 +617,7 @@ public async Task PushAsync(IEnumerable plcs, string configura try { // check if package version already exists and skip it - var packageVersionLookup = await GetPackageVersionAsync(new PlcLibrary { DistributorName = plc.DistributorName, Name = plc.Name, Version = plc.Version }, configuration, branch, target, cancellationToken); + var packageVersionLookup = await GetPackageVersionAsync(new PlcLibrary { DistributorName = plc.DistributorName, Name = plc.Name, Version = plc.Version }, branch, configuration, target, cancellationToken); if (packageVersionLookup.PackageVersionId != null) { string msg = $"already published package '{packageVersionLookup.Name}' (branch: {packageVersionLookup.Branch}, target: {packageVersionLookup.Target}, configuration: {packageVersionLookup.Configuration}, version: {packageVersionLookup.Version})";