Fix a crash with possible empty contact name.

This commit is contained in:
John Preston 2023-07-21 14:42:51 +04:00
parent f8e8155452
commit 75dc7e6e81
1 changed files with 4 additions and 0 deletions

View File

@ -896,6 +896,10 @@ void OverlayWidget::RendererGL::paintStoriesSiblingPart(
float64 opacity) {
Expects(index >= 0 && index < kStoriesSiblingPartsCount);
if (image.isNull() || rect.isEmpty()) {
return;
}
_f->glActiveTexture(GL_TEXTURE0);
auto &part = _storiesSiblingParts[index];