File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1139,7 +1139,8 @@ public override string ToString()
1139
1139
//AddInf "logical" element
1140
1140
SwissQrCodePayload += ( ! string . IsNullOrEmpty ( additionalInformation . UnstructureMessage ) ? additionalInformation . UnstructureMessage : string . Empty ) + br ; //Ustrd
1141
1141
SwissQrCodePayload += additionalInformation . Trailer + br ; //Trailer
1142
- SwissQrCodePayload += ( ! string . IsNullOrEmpty ( additionalInformation . BillInformation ) ? additionalInformation . BillInformation : string . Empty ) + br ; //StrdBkgInf
1142
+ // Bug #399 If BillInformation is empty, insert no linebreak
1143
+ SwissQrCodePayload += ( ! string . IsNullOrEmpty ( additionalInformation . BillInformation ) ? additionalInformation . BillInformation + br : string . Empty ) ; //StrdBkgInf
1143
1144
1144
1145
//AltPmtInf "logical" element
1145
1146
if ( ! string . IsNullOrEmpty ( alternativeProcedure1 ) )
You can’t perform that action at this time.
0 commit comments