wrong double quote output with .csv fixed
(cherry picked from commit 68fdd753a7
)
This commit is contained in:
parent
107bd09636
commit
70fc0d45f7
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,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++;
|
||||
|
|
Loading…
Reference in a new issue