Skip to content

Commit

Permalink
Lowercase imageboard tags for compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
0xb8 committed Jun 9, 2024
1 parent 8925dc5 commit be97f51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/tag_fetcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ void TagFetcher::open_reply(QNetworkReply * reply)
if (!res.isEmpty()) {
res.append(' ');
}
res.append(tag->toString().replace(' ', '_'));
res.append(tag->toString().replace(' ', '_').toLower());
}
}
}
Expand Down

0 comments on commit be97f51

Please sign in to comment.