mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-02-04 19:27:33 +01:00
fix build
This commit is contained in:
parent
0ef8f4f06c
commit
831029d9a5
@ -238,7 +238,7 @@ QList<Message> RedditNetworkFactory::hot(const QString& sub_name, const QNetwork
|
||||
int desired_count = batchSize();
|
||||
|
||||
do {
|
||||
int next_batch = desired_count <= 0 ? 100 : std::min(100, desired_count - msgs.size());
|
||||
int next_batch = desired_count <= 0 ? 100 : std::min(100, int(desired_count - msgs.size()));
|
||||
|
||||
QByteArray output;
|
||||
QString final_url =
|
||||
|
Loading…
x
Reference in New Issue
Block a user