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

Commit cda924f0 authored by Moez Bhatti's avatar Moez Bhatti
Browse files

Improve message blocking logs

parent 0dec36e1
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -37,6 +37,14 @@ interface BlockingClient {
        // This means there's a good chance that if a number is blocked in QK, it won't be blocked there, so we
        // shouldn't unblock the conversation in that case
        object DoNothing : Action()

        override fun toString(): String {
            return when (this) {
                is Block -> "Block"
                is Unblock -> "Unblock"
                is DoNothing -> "DoNothing"
            }
        }
    }

    /**