mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-18 04:08:44 +03:00
Ensure the message is understood as a debug indication (#2509)
This commit is contained in:
parent
7828e3f501
commit
88a4dfd094
1 changed files with 2 additions and 2 deletions
|
@ -182,8 +182,8 @@ class NoticeEventFormatter @Inject constructor(
|
|||
}
|
||||
}
|
||||
|
||||
private fun formatDebug(event: Event): CharSequence? {
|
||||
return "{ \"type\": ${event.getClearType()} }"
|
||||
private fun formatDebug(event: Event): CharSequence {
|
||||
return "Debug: event type \"${event.getClearType()}\""
|
||||
}
|
||||
|
||||
private fun formatRoomCreateEvent(event: Event, rs: RoomSummary?): CharSequence? {
|
||||
|
|
Loading…
Add table
Reference in a new issue