- No emote parsing on AutoTranslate

- nint everything
This commit is contained in:
Infi
2024-06-02 14:17:45 +02:00
parent a35ebae09c
commit 9c4b975605
10 changed files with 35 additions and 64 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ internal static class StringUtil {
}
// Taken from https://stackoverflow.com/a/4975942
internal static String BytesToString(long byteCount) {
internal static string BytesToString(long byteCount) {
string[] suf = ["B", "KB", "MB", "GB", "TB", "PB", "EB"]; // Longs run out around EB
if (byteCount == 0)
return "0" + suf[0];