I think at some point rtorrent has changed - it seems it doesn't set the
'connection_current' variable to 'seed' when a file has completed but
still active (and therefore seeding). So, in rtGui the status would never
change to 'Seeding' from 'Leeching'.
To Fix: functions.php, line 103:
From:
if ($retarr[$index]['is_active']==1 && $retarr[$index]
['connection_current']=="seed") $retarr[$index]['status_string']="Seeding";
To:
if ($retarr[$index]['is_active']==1 && $retarr[$index]['complete']==1)
$retarr[$index]['status_string']="Seeding";
Original issue reported on code.google.com by lemonbe...@gmail.com on 12 Dec 2008 at 8:19
Original issue reported on code.google.com by
lemonbe...@gmail.com
on 12 Dec 2008 at 8:19