Skip to content

Commit f68b795

Browse files
Clean up comparison of column name
Co-authored-by: Sébastien Julliand <[email protected]>
1 parent 27b21b6 commit f68b795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/Tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ export namespace Tools {
321321
if (str.trim().length === 0) return ``;
322322

323323
// If column is SRCDTA, always return as string.
324-
if (col && col === `SRCDTA`) return str;
324+
if (col === `SRCDTA`) return str;
325325

326326
// The number is already generated on the server.
327327
// So, we assume that if the string starts with a 0, it is a string.

0 commit comments

Comments
 (0)