mirror of https://notabug.org/acetone/ircabot.git
bit typos
parent
8507b66f88
commit
8dc7ae197c
|
@ -104,8 +104,6 @@ std::pair<QString, QString> HttpServer::splitUserNameAndMessage(const QString &r
|
|||
}
|
||||
text.replace(rawLink, convertToClickableLink(rawLink));
|
||||
}
|
||||
if (linksFound) text.replace(" </a>", "</a>"); // delete whitespace in links end
|
||||
|
||||
// long lines
|
||||
int space = 0;
|
||||
bool nbTag = false; // For safe HTML tags like a ⁢ via <wbr>!
|
||||
|
@ -135,6 +133,7 @@ std::pair<QString, QString> HttpServer::splitUserNameAndMessage(const QString &r
|
|||
space = i;
|
||||
}
|
||||
}
|
||||
if (linksFound) text.replace(" </a>", "</a>"); // delete whitespace in links end
|
||||
|
||||
result.first = nick;
|
||||
result.second = text;
|
||||
|
|
|
@ -189,7 +189,7 @@ Content-Length: {{SIZE}}\r\n\r\n";
|
|||
</div>\n";
|
||||
|
||||
const QString HTML_PAYLOAD_ADDITIONAL_ARROWS = "\
|
||||
<a href=\"{{CURRENT_DATA_LOG}}\" title=\"Jump to latest logs\" class=\"main_header__title_arrows\"></a>\n";
|
||||
<a href=\"{{CURRENT_DATA_LOG}}\" title=\"Jump to today logs\" class=\"main_header__title_arrows\"></a>\n";
|
||||
|
||||
const QString HTML_PAYLOAD_ADDITIONAL_NOTIFY = "\
|
||||
<div onclick=\"sound()\" id=\"musicanotes\" class=\"main_header__title_notify\"></div>\n";
|
||||
|
|
Loading…
Reference in New Issue