File tree Expand file tree Collapse file tree
flipchatApp/src/main/kotlin/xyz/flipchat/app Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments