feat: Bump version to 1.0.9 and update release notes; remove debug logs functionality
This commit is contained in:
@@ -643,6 +643,22 @@ interface DialogDao {
|
||||
verified: Int
|
||||
)
|
||||
|
||||
/** Обновить только имя/username собеседника, не трогая verified */
|
||||
@Query(
|
||||
"""
|
||||
UPDATE dialogs SET
|
||||
opponent_title = :title,
|
||||
opponent_username = :username
|
||||
WHERE account = :account AND opponent_key = :opponentKey
|
||||
"""
|
||||
)
|
||||
suspend fun updateOpponentDisplayName(
|
||||
account: String,
|
||||
opponentKey: String,
|
||||
title: String,
|
||||
username: String
|
||||
)
|
||||
|
||||
/**
|
||||
* Получить общее количество непрочитанных сообщений, исключая указанный диалог Используется для
|
||||
* отображения badge на кнопке "назад" в экране чата
|
||||
|
||||
Reference in New Issue
Block a user