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()
11401140 //AddInf "logical" element
11411141 SwissQrCodePayload += ( ! string . IsNullOrEmpty ( additionalInformation . UnstructureMessage ) ? additionalInformation . UnstructureMessage : string . Empty ) + br ; //Ustrd
11421142 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
11441145
11451146 //AltPmtInf "logical" element
11461147 if ( ! string . IsNullOrEmpty ( alternativeProcedure1 ) )
You can’t perform that action at this time.
0 commit comments