Skip to content

Commit

Permalink
Merge pull request #44294 from GoDino/issue_44269
Browse files Browse the repository at this point in the history
wrong double quote output with .csv fixed
  • Loading branch information
akien-mga authored Dec 11, 2020
2 parents dc589a6 + 68fdd75 commit 146316c
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 146316c

Please sign in to comment.