mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Added missed line break to header with empty thumbnail. (#1705)
This commit is contained in:
parent
a2f2cac3fd
commit
78dab081d8
|
@ -91,10 +91,11 @@ namespace {
|
|||
.arg(s.title.toHtmlEscaped())
|
||||
.arg(s.title.isEmpty() ? QString() : "<br><br>")
|
||||
.arg(getSettings()->thumbnailSizeStream.getValue() > 0
|
||||
? (thumbnail.isEmpty()
|
||||
? "Couldn't fetch thumbnail"
|
||||
: "<img src=\"data:image/jpg;base64, " + thumbnail +
|
||||
"\"/><br>")
|
||||
? ((thumbnail.isEmpty()
|
||||
? "Couldn't fetch thumbnail"
|
||||
: "<img src=\"data:image/jpg;base64, " +
|
||||
thumbnail + "\"/>") +
|
||||
"<br>")
|
||||
: QString())
|
||||
.arg(s.game.toHtmlEscaped())
|
||||
.arg(s.game.isEmpty() ? QString() : "<br>")
|
||||
|
|
Loading…
Reference in a new issue