handzlikchris / handzlikchris/FastScriptReload
[Error] An error is caused if the source code contains English characters
Open
bug
- Dominant language
- C#
- Stars
- 2.2k
- Forks
- 167
- PR merge metrics
- No merged PRs in 30d
Description
Included in the original code
public static string[] SplitStringByComma(string input)
{
string[] splitStrings = input.Split(new char[] { ',', ',' });
return splitStrings;
}
After FSR processing
public static string[] SplitStringByComma(string input)
{
string[] splitStrings = input.Split(new char[] { '��', ',' });
return splitStrings;
}
No problem if don't use Chinese characters
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.