Skip to content
Snippets Groups Projects
Commit b94e4982 authored by Jeff DeCew's avatar Jeff DeCew
Browse files

Fix crash due to incorrectly implemented assert

Test: manual
Change-Id: Ic0ff5614c2f6e20161842097b1975b162955c44d
parent 61a74673
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,8 @@ class NotifPipelineFlags @Inject constructor(
return false
}
fun assertLegacyPipelineEnabled(): Nothing =
error("Old pipeline code running w/ new pipeline enabled")
fun assertLegacyPipelineEnabled(): Unit =
check(!isNewPipelineEnabled()) { "Old pipeline code running w/ new pipeline enabled" }
fun isNewPipelineEnabled(): Boolean =
featureFlags.isEnabled(Flags.NEW_NOTIFICATION_PIPELINE_RENDERING)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment