Skip to content

Commit

Permalink
Not.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrant committed Sep 13, 2024
1 parent f41b68e commit 931a0ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import org.wikipedia.auth.AccountUtil
sealed class MobileAppsEvent(@Transient private val _streamName: String = "") : Event(_streamName) {

@SerialName("is_anon") @Required private val anon = !AccountUtil.isLoggedIn
@SerialName("is_temp") @Required private val temp = !AccountUtil.isTemporaryAccount
@SerialName("is_temp") @Required private val temp = AccountUtil.isTemporaryAccount
@SerialName("app_session_id") @Required private val sessionId = EventPlatformClient.AssociationController.sessionId
@SerialName("app_install_id") @Required private val appInstallId = WikipediaApp.instance.appInstallID
}

0 comments on commit 931a0ce

Please sign in to comment.