diff --git a/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp b/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp index 539d4e2a1..665ec5359 100644 --- a/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp +++ b/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp @@ -279,7 +279,7 @@ void BottomInfo::layoutDateText() { ? (tr::lng_edited(tr::now) + ' ') : QString(); const auto author = _data.author; - const auto prefix = author.isEmpty() ? qsl(", ") : QString(); + const auto prefix = !author.isEmpty() ? qsl(", ") : QString(); const auto date = edited + _data.date.toString(cTimeFormat()); _dateWidth = st::msgDateFont->width(date); const auto afterAuthor = prefix + date;