Commit b74fff7
authored
Fixed bug in removing trailing delimiter
The existing code strips all trailing delimiters which is incorrect, it should only remove the final delimiter. The problem occurs when the last column is empty. Say you export three fields, first name, last name & email (where email is null). Expected output would be "John;Doe;" but instead you get "John;Doe" which is problematic.1 parent 3fe0a7b commit b74fff7
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
149 | 149 | | |
150 | 150 | | |
151 | 151 | | |
152 | | - | |
| 152 | + | |
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
| |||
0 commit comments