2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-01 07:05:13 +00:00

[Improvement] Deleted account difference

This commit is contained in:
RadRussianRus
2022-09-10 20:17:23 +03:00
committed by Eric Kotato
parent 674b37e85b
commit 6e42a0fd0e
10 changed files with 27 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "data/data_peer_values.h"
#include "kotato/kotato_lang.h"
#include "lang/lang_keys.h"
#include "data/data_channel.h"
#include "data/data_chat.h"
@@ -49,7 +50,9 @@ int OnlinePhraseChangeInSeconds(LastseenStatus status, TimeId now) {
}
std::optional<QString> OnlineTextSpecial(not_null<UserData*> user) {
if (user->isNotificationsUser()) {
if (user->isInaccessible()) {
return ktr("ktg_user_status_unaccessible");
} else if (user->isNotificationsUser()) {
return tr::lng_status_service_notifications(tr::now);
} else if (user->isSupport()) {
return tr::lng_status_support(tr::now);