Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69259929 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Remove `columnPrefix = ""` from communal TableLogBuffers." into main

parents a5c29f6c 1c72a77a
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -58,7 +58,6 @@ constructor(
            .distinctUntilChanged()
            .logDiffsForTable(
                tableLogBuffer = tableLogBuffer,
                columnPrefix = "",
                columnName = "postured",
                initialValue = false,
            )
+0 −1
Original line number Diff line number Diff line
@@ -52,7 +52,6 @@ constructor(
    override val mediaModel: Flow<CommunalMediaModel> =
        _mediaModel.logDiffsForTable(
            tableLogBuffer = tableLogBuffer,
            columnPrefix = "",
            initialValue = CommunalMediaModel.INACTIVE,
        )

+0 −1
Original line number Diff line number Diff line
@@ -98,7 +98,6 @@ constructor(
            .filterNotNull()
            .logDiffsForTable(
                tableLogBuffer = tableLogBuffer,
                columnPrefix = "",
                columnName = "tutorialSettingState",
                initialValue = HUB_MODE_TUTORIAL_NOT_STARTED,
            )
+0 −2
Original line number Diff line number Diff line
@@ -163,7 +163,6 @@ constructor(
            }
            .logDiffsForTable(
                tableLogBuffer = tableLogBuffer,
                columnPrefix = "",
                columnName = "isCommunalAvailable",
                initialValue = false,
            )
@@ -300,7 +299,6 @@ constructor(
            }
            .logDiffsForTable(
                tableLogBuffer = tableLogBuffer,
                columnPrefix = "",
                columnName = "isCommunalShowing",
                initialValue = false,
            )
+0 −2
Original line number Diff line number Diff line
@@ -49,7 +49,6 @@ constructor(
            .flatMapLatest { user -> repository.isCtaDismissed(user) }
            .logDiffsForTable(
                tableLogBuffer = tableLogBuffer,
                columnPrefix = "",
                columnName = "isCtaDismissed",
                initialValue = false,
            )
@@ -67,7 +66,6 @@ constructor(
            .flatMapLatest { user -> repository.isHubOnboardingDismissed(user) }
            .logDiffsForTable(
                tableLogBuffer = tableLogBuffer,
                columnPrefix = "",
                columnName = "isHubOnboardingDismissed",
                initialValue = false,
            )
Loading