hicklemr / rtgui

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

Seeding tabs show inactive torrents #84

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Seed some torrents, stop them
2. Click seeding tab
3.

What is the expected output? What do you see instead?
I would expect only active torrents being seeded to be shown here, instead
all completed torrents are displayed.

What version of the product are you using? On what operating system?
rtgui 0.27 and rtorrent 0.8.4

Please provide any additional information below.
Fixed it with a one-liner in index.php
after
for ($data as $item) {
add
if ($_SESSION['view']=="seeding" && $item['is_active']==0) continue;

This might be more of a personal preference so feel free to disregard.

Original issue reported on code.google.com by shez...@gmail.com on 5 Jun 2009 at 5:22

GoogleCodeExporter commented 8 years ago
From what I can work out, it looks like this is an rTorrent bug - I'm seeing 
consistent results in rtGui and rTorrent.

Can anyone else confirm?

Original comment by lemonbe...@gmail.com on 6 Jun 2009 at 8:21

GoogleCodeExporter commented 8 years ago
If my understanding is correct, you can alter the seeding view with something 
like:
view_filter = seeding,d.is_active=

Sounds like it's more of a feature than a bug.  ;)

Original comment by llamaXxX@gmail.com on 6 Jun 2009 at 10:28

GoogleCodeExporter commented 8 years ago
I can confirm that the same happens in rtorrent.

Original comment by shez...@gmail.com on 7 Jun 2009 at 1:43

GoogleCodeExporter commented 8 years ago

Original comment by lemonbe...@gmail.com on 12 Jun 2009 at 11:02