mirror of https://github.com/procxx/kepka.git
Fix one more crash in HistoryWidget.
This commit is contained in:
parent
534058fe9b
commit
9fff2bf4c7
|
@ -3983,7 +3983,7 @@ void HistoryWidget::updateFieldPlaceholder() {
|
||||||
auto text = _inlineBot->botInfo->inlinePlaceholder.mid(1);
|
auto text = _inlineBot->botInfo->inlinePlaceholder.mid(1);
|
||||||
_field->setPlaceholder([text] { return text; }, _inlineBot->username.size() + 2);
|
_field->setPlaceholder([text] { return text; }, _inlineBot->username.size() + 2);
|
||||||
} else {
|
} else {
|
||||||
const auto peer = _history->peer;
|
const auto peer = _history ? _history->peer : nullptr;
|
||||||
_field->setPlaceholder(langFactory(
|
_field->setPlaceholder(langFactory(
|
||||||
(peer && peer->isChannel() && !peer->isMegagroup())
|
(peer && peer->isChannel() && !peer->isMegagroup())
|
||||||
? (peer->notifySilentPosts()
|
? (peer->notifySilentPosts()
|
||||||
|
|
Loading…
Reference in New Issue