Fix phrase in HistoryJoined for supergroups.

This commit is contained in:
John Preston 2017-07-05 16:23:52 +03:00
parent 4d3e7ac30c
commit 1a7353fb43
1 changed files with 1 additions and 4 deletions

View File

@ -688,9 +688,6 @@ HistoryJoined::PreparedText HistoryJoined::GenerateText(gsl::not_null<History*>
}
auto result = PreparedText {};
result.links.push_back(peerOpenClickHandler(inviter));
if (history->isMegagroup()) {
result.text = lng_action_add_you_group(lt_from, textcmdLink(1, inviter->name));
}
result.text = lng_action_add_you(lt_from, textcmdLink(1, inviter->name));
result.text = (history->isMegagroup() ? lng_action_add_you_group : lng_action_add_you)(lt_from, textcmdLink(1, inviter->name));
return result;
}