fix comparison of different signedness

This commit is contained in:
llyyr 2023-02-18 08:42:09 +05:30
parent 335a4456ed
commit 331fb8f4ca

View file

@ -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;