mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Add missing arg to string format in user unblock error (#3279)
Co-authored-by: Paweł <zneix@zneix.eu>
This commit is contained in:
parent
5861722c38
commit
fa5a9fe831
1 changed files with 4 additions and 3 deletions
|
@ -434,10 +434,11 @@ void UserInfoPopup::installEvents()
|
|||
reenableBlockCheckbox();
|
||||
},
|
||||
[this, reenableBlockCheckbox] {
|
||||
this->channel_->addMessage(
|
||||
makeSystemMessage(QString(
|
||||
this->channel_->addMessage(makeSystemMessage(
|
||||
QString(
|
||||
"User %1 couldn't be unblocked, an unknown "
|
||||
"error occurred!")));
|
||||
"error occurred!")
|
||||
.arg(this->userName_)));
|
||||
reenableBlockCheckbox();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue