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 @@ -1140,7 +1140,8 @@ public override string ToString()
1140
1140
//AddInf "logical" element
1141
1141
SwissQrCodePayload += ( ! string . IsNullOrEmpty ( additionalInformation . UnstructureMessage ) ? additionalInformation . UnstructureMessage : string . Empty ) + br ; //Ustrd
1142
1142
SwissQrCodePayload += additionalInformation . Trailer + br ; //Trailer
1143
- SwissQrCodePayload += ( ! string . IsNullOrEmpty ( additionalInformation . BillInformation ) ? additionalInformation . BillInformation : string . Empty ) + br ; //StrdBkgInf
1143
+ // Bug #399 If BillInformation is empty, insert no linebreak
1144
+ SwissQrCodePayload += ( ! string . IsNullOrEmpty ( additionalInformation . BillInformation ) ? additionalInformation . BillInformation + br : string . Empty ) ; //StrdBkgInf
1144
1145
1145
1146
//AltPmtInf "logical" element
1146
1147
if ( ! string . IsNullOrEmpty ( alternativeProcedure1 ) )
You can’t perform that action at this time.
0 commit comments