Skip to content

Commit d0445c1

Browse files
committed
build: set emojis as launched
Signed-off-by: Brandon McAnsh <[email protected]>
1 parent 9786dfa commit d0445c1

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

flipchatApp/src/main/kotlin/xyz/flipchat/app/auth/AuthManager.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ class AuthManager @Inject constructor(
109109
suspend fun register(displayName: String): Result<ID> {
110110
val entropyB64 = userManager.entropy ?: setupAsNew()
111111
if (entropyB64.isEmpty()) {
112-
taggedTrace("provided entropy was empty", type = TraceType.Error)
113112
userManager.clear()
114113
return Result.failure(Throwable("Provided entropy was empty"))
115114
}
@@ -175,7 +174,6 @@ class AuthManager @Inject constructor(
175174
taggedTrace("Login: isSoftLogin: $isSoftLogin, rollbackOnError: $rollbackOnError")
176175

177176
if (entropyB64.isEmpty()) {
178-
taggedTrace("provided entropy was empty", type = TraceType.Error)
179177
userManager.clear()
180178
return Result.failure(Throwable("Provided entropy was empty"))
181179
}

flipchatApp/src/main/kotlin/xyz/flipchat/app/beta/LabsController.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ sealed interface Lab {
9393

9494
data object EmojiReactions: Lab {
9595
override val key: String = "emojis_enabled"
96-
override val default: Boolean = false
97-
override val launched: Boolean = false
96+
override val default: Boolean = true
97+
override val launched: Boolean = true
9898
}
9999

100100
data object RoomDescriptions: Lab {

0 commit comments

Comments
 (0)