You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-04 19:21:46 +00:00
wrong double quote output with .csv fixed
This commit is contained in:
@@ -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++;
|
||||
|
||||
Reference in New Issue
Block a user