Skip to content

Commit 9646202

Browse files
committed
Fix bug parsing last column of CSV
1 parent ad1ae7c commit 9646202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/TranslationInjector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ private IEnumerator AddWebCsvCoro(string url)
116116
yield break;
117117
}
118118

119-
string downloaded = request.downloadHandler.text;
119+
string downloaded = request.downloadHandler.text.Replace("\r", string.Empty);
120120
_langData.Import_CSV(string.Empty, downloaded, eSpreadsheetUpdateMode.Merge);
121121

122122
if (!_csvFiles.Any(f => f.Path == url))

0 commit comments

Comments
 (0)