Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PAYNLSDK/API/Banktransfer/Add/Request.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public override System.Collections.Specialized.NameValueCollection GetParameters
nvc.Add("description", Description);
}

if (!ParameterValidator.IsNonEmptyInt(PromotorId))
if (PromotorId.HasValue)
{
nvc.Add("promotorId", PromotorId.Value.ToString());
}
Expand Down
8 changes: 4 additions & 4 deletions PAYNLSDK/PAYNLSDK.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>PayNLSdk</id>
<version>1.0.0.18</version>
<version>1.0.0.20</version>
<title>PayNLSdk</title>
<authors>SebsoftPayNLSdk</authors>
<owners>paynl</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>PayNL Gateway SDK</description>
<summary>Pay.nl SDK for .net</summary>
<releaseNotes>Small change to address parser</releaseNotes>
<copyright>Copyright 2021</copyright>
<releaseNotes>Small change to Banktransfer API</releaseNotes>
<copyright>Copyright 2016-2023</copyright>
<tags>pay.nl payments pay paynl</tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="12.0.3" />
<dependency id="Newtonsoft.Json" version="13.0.3" />
</dependencies>
</metadata>
</package>
4 changes: 2 additions & 2 deletions PAYNLSDK/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.19")]
[assembly: AssemblyFileVersion("1.0.0.19")]
[assembly: AssemblyVersion("1.0.0.20")]
[assembly: AssemblyFileVersion("1.0.0.20")]