Skip to content

Commit

Permalink
feat(analytics): removed prefix from dummy GA web client id
Browse files Browse the repository at this point in the history
  • Loading branch information
vihangpatil committed Sep 20, 2023
1 parent 575696e commit 90d03fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,5 @@ object Log {
)
}

private fun createWebClientId() = "GA1.1.${Random.nextULong(from = 1_000_000_000u, until = 9_999_999_999u)}.${Instant.now().epochSecond}"
private fun createWebClientId() = "${Random.nextULong(from = 1_000_000_000u, until = 9_999_999_999u)}.${Instant.now().epochSecond}"
}

0 comments on commit 90d03fc

Please sign in to comment.