Skip to content

Commit

Permalink
wrong double quote output with .csv fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Alf Kraus committed Dec 11, 2020
1 parent 32c06df commit 68fdd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/os/file_access.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ Vector<String> FileAccess::get_csv_line(const String &p_delim) const {
strings.push_back(current);
current = String();
} else if (c == '"') {
if (l[i + 1] == '"') {
if (l[i + 1] == '"' && in_quote) {
s[0] = '"';
current += s;
i++;
Expand Down

0 comments on commit 68fdd75

Please sign in to comment.