Skip to content

Commit b83ec40

Browse files
authored
Include _join fixes in compiled gml file
1 parent dd6d78a commit b83ec40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gdash.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ var stringJoiner = string(joiner);
931931
for (var i = 0; i < arrLength; i++) {
932932
outString += string(inArray[i]);
933933

934-
if (i == maxIndex) {
934+
if (i != maxIndex) {
935935
outString += stringJoiner;
936936
}
937937
}

0 commit comments

Comments
 (0)