google-code-export / rtgui

Automatically exported from code.google.com/p/rtgui
1 stars 0 forks source link

Status "leeching" when should be "seeding" #59

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Fixed in version 0.2.7

Original comment by lemonbe...@gmail.com on 16 Mar 2009 at 10:19