Skip to content

Commit

Permalink
Fix bug parsing last column of CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
katycat5e committed Oct 17, 2023
1 parent ad1ae7c commit 9646202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/TranslationInjector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private IEnumerator AddWebCsvCoro(string url)
yield break;
}

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

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

0 comments on commit 9646202

Please sign in to comment.