Skip to content

Commit

Permalink
fix: wrong sending custom or track events as page events (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
dixidroid authored Oct 7, 2024
1 parent 660770c commit a86d95d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class FullstoryAnalytics : Analytics {

override fun logEvent(eventName: String, params: Map<String, Any?>) {
logger.d { "Event: $eventName $params" }
FS.page(eventName, params).start()
FS.event(eventName, params)
}

override fun logUserId(userId: Long) {
Expand Down

0 comments on commit a86d95d

Please sign in to comment.