Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import kotlinx.coroutines.channels.Channel.Factory.BUFFERED
import kotlinx.coroutines.channels.consumeEach
import kotlinx.coroutines.launch
import org.json.JSONObject
import java.util.Locale
import java.util.UUID

class AnalyticsTracker private constructor(
Expand Down Expand Up @@ -91,7 +90,7 @@ class AnalyticsTracker private constructor(
return
}

val eventName = stat.name.lowercase(Locale.getDefault())
val eventName = stat.name.lowercase()

val user = username ?: getAnonID() ?: generateNewAnonID()

Expand Down
Loading