mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-26 14:47:13 +00:00
SES-1156 - Ban and delete functionality fix (#1428)
* WIP * Investigation in progress * End of day push * WIP * Fixes #1416 * Cleanup * Added code to remove zombie messages caught in limbo during a ban & delete - still chock full o' debug while finding root cause * Root cause debug WIP * Push prior to cleanup * Cleaned up for PR * fix: mms delete, remove unnecessary values from sms * Addressed PR feedback * fix: fix unit tests * Added '.run' folder with test setup * Update README.md Test commit for CI * Re-added accidentally removed closing brace --------- Co-authored-by: alansley <aclansley@gmail.com> Co-authored-by: Al Lansley <alansley@users.noreply.github.com> Co-authored-by: 0x330a <92654767+0x330a@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package org.thoughtcrime.securesms
|
||||
|
||||
import org.session.libsignal.utilities.Log.Logger
|
||||
|
||||
object NoOpLogger: Logger() {
|
||||
override fun v(tag: String?, message: String?, t: Throwable?) {}
|
||||
|
||||
override fun d(tag: String?, message: String?, t: Throwable?) {}
|
||||
|
||||
override fun i(tag: String?, message: String?, t: Throwable?) {}
|
||||
|
||||
override fun w(tag: String?, message: String?, t: Throwable?) {}
|
||||
|
||||
override fun e(tag: String?, message: String?, t: Throwable?) {}
|
||||
|
||||
override fun wtf(tag: String?, message: String?, t: Throwable?) {}
|
||||
|
||||
override fun blockUntilAllWritesFinished() {}
|
||||
}
|
||||
Reference in New Issue
Block a user