BUGFIX: Hide seeding torrents files priorities in Web UI

This commit is contained in:
Christophe Dumez 2010-05-24 19:37:56 +00:00
parent 2e51e69cc9
commit 223fd4f0ba
3 changed files with 9 additions and 2 deletions

View file

@ -113,6 +113,8 @@ QList<QVariantMap> EventManager::getPropFilesInfo(QString hash) const {
else
file["progress"] = 1.; // Empty file...
file["priority"] = priorities[i];
if(i == 0)
file["is_seed"] = h.is_seed();
files << file;
++i;
}