File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
flipchatApp/src/main/kotlin/xyz/flipchat/app Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ class AuthManager @Inject constructor(
109
109
suspend fun register (displayName : String ): Result <ID > {
110
110
val entropyB64 = userManager.entropy ? : setupAsNew()
111
111
if (entropyB64.isEmpty()) {
112
- taggedTrace(" provided entropy was empty" , type = TraceType .Error )
113
112
userManager.clear()
114
113
return Result .failure(Throwable (" Provided entropy was empty" ))
115
114
}
@@ -175,7 +174,6 @@ class AuthManager @Inject constructor(
175
174
taggedTrace(" Login: isSoftLogin: $isSoftLogin , rollbackOnError: $rollbackOnError " )
176
175
177
176
if (entropyB64.isEmpty()) {
178
- taggedTrace(" provided entropy was empty" , type = TraceType .Error )
179
177
userManager.clear()
180
178
return Result .failure(Throwable (" Provided entropy was empty" ))
181
179
}
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ sealed interface Lab {
93
93
94
94
data object EmojiReactions : Lab {
95
95
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
98
98
}
99
99
100
100
data object RoomDescriptions : Lab {
You can’t perform that action at this time.
0 commit comments