mirror of https://github.com/procxx/kepka.git
Revert "Show invite link owner in service message."
This reverts commit 27103889a4
.
This commit is contained in:
parent
346cb4e203
commit
784b0a2248
|
@ -846,7 +846,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_action_kick_user" = "{from} removed {user}";
|
"lng_action_kick_user" = "{from} removed {user}";
|
||||||
"lng_action_user_left" = "{from} left the group";
|
"lng_action_user_left" = "{from} left the group";
|
||||||
"lng_action_user_joined" = "{from} joined the group";
|
"lng_action_user_joined" = "{from} joined the group";
|
||||||
"lng_action_user_joined_by_link_from" = "{from} joined the group via invite link from {user}";
|
"lng_action_user_joined_by_link" = "{from} joined the group via invite link";
|
||||||
"lng_action_user_registered" = "{from} just joined Telegram";
|
"lng_action_user_registered" = "{from} just joined Telegram";
|
||||||
"lng_action_removed_photo" = "{from} removed group photo";
|
"lng_action_removed_photo" = "{from} removed group photo";
|
||||||
"lng_action_removed_photo_channel" = "Channel photo removed";
|
"lng_action_removed_photo_channel" = "Channel photo removed";
|
||||||
|
|
|
@ -36,14 +36,14 @@ void HistoryService::setMessageByAction(const MTPmessageAction &action) {
|
||||||
auto result = PreparedText {};
|
auto result = PreparedText {};
|
||||||
auto &users = action.vusers.v;
|
auto &users = action.vusers.v;
|
||||||
if (users.size() == 1) {
|
if (users.size() == 1) {
|
||||||
auto user = App::user(peerFromUser(users[0]));
|
auto u = App::user(peerFromUser(users[0]));
|
||||||
if (user == _from) {
|
if (u == _from) {
|
||||||
result.links.push_back(fromLink());
|
result.links.push_back(fromLink());
|
||||||
result.text = lng_action_user_joined(lt_from, fromLinkText());
|
result.text = lng_action_user_joined(lt_from, fromLinkText());
|
||||||
} else {
|
} else {
|
||||||
result.links.push_back(fromLink());
|
result.links.push_back(fromLink());
|
||||||
result.links.push_back(user->createOpenLink());
|
result.links.push_back(u->createOpenLink());
|
||||||
result.text = lng_action_add_user(lt_from, fromLinkText(), lt_user, textcmdLink(2, user->name));
|
result.text = lng_action_add_user(lt_from, fromLinkText(), lt_user, textcmdLink(2, u->name));
|
||||||
}
|
}
|
||||||
} else if (users.isEmpty()) {
|
} else if (users.isEmpty()) {
|
||||||
result.links.push_back(fromLink());
|
result.links.push_back(fromLink());
|
||||||
|
@ -69,11 +69,9 @@ void HistoryService::setMessageByAction(const MTPmessageAction &action) {
|
||||||
};
|
};
|
||||||
|
|
||||||
auto prepareChatJoinedByLink = [this](const MTPDmessageActionChatJoinedByLink &action) {
|
auto prepareChatJoinedByLink = [this](const MTPDmessageActionChatJoinedByLink &action) {
|
||||||
const auto user = App::user(peerFromUser(action.vinviter_id.v));
|
|
||||||
auto result = PreparedText {};
|
auto result = PreparedText {};
|
||||||
result.links.push_back(fromLink());
|
result.links.push_back(fromLink());
|
||||||
result.links.push_back(user->createOpenLink());
|
result.text = lng_action_user_joined_by_link(lt_from, fromLinkText());
|
||||||
result.text = lng_action_user_joined_by_link_from(lt_from, fromLinkText(), lt_user, textcmdLink(2, user->name));
|
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue