Skip to content

Commit 42731ea

Browse files
committed
fix
1 parent 1386f1f commit 42731ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/com/biglybt/core/metasearch/impl/web/rss/RSSEngine.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@
922922

923923
if ( item_completed >= 0 || desc_completed >= 0) {
924924

925-
result.setNbCompleted( Math.max( item_completed, desc_completed ));
925+
result.setNbCompleted(item_completed>= 0?item_completed:desc_completed);
926926
}
927927

928928
// if we still have no download link see if the magnet is in the title

0 commit comments

Comments
 (0)