fix comparison of different signedness
This commit is contained in:
parent
335a4456ed
commit
331fb8f4ca
|
@ -259,7 +259,7 @@ void DiscordPage::javaScriptConsoleMessage(
|
|||
auto lines = segment.split("\n");
|
||||
QString ansi;
|
||||
uint endOfStyles = lines.length();
|
||||
for (size_t line = 1; line < lines.length(); line++) {
|
||||
for (auto line = 1; line < lines.length(); line++) {
|
||||
if (!lines[line].endsWith(";")) {
|
||||
endOfStyles = line;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue