[#2402] [Notification] Fix popup to show actual count of files finished

This commit is contained in:
Calum Lind 2015-09-18 22:44:43 +01:00
parent bfb202086d
commit 0a01aa28b0
1 changed files with 2 additions and 1 deletions

View File

@ -227,7 +227,7 @@ class GtkUiNotifications(CustomNotifications):
return ''
def _on_torrent_finished_event_popup(self, torrent_id):
d = client.core.get_torrent_status(torrent_id, ["name", "num_files"])
d = client.core.get_torrent_status(torrent_id, ["name", "file_progress"])
d.addCallback(self._on_torrent_finished_event_got_torrent_status)
d.addErrback(self._on_torrent_finished_event_torrent_status_failure)
return d
@ -239,6 +239,7 @@ class GtkUiNotifications(CustomNotifications):
log.debug("Handler for TorrentFinishedEvent GTKUI called. "
"Got Torrent Status")
title = _("Finished Torrent")
torrent_status["num_files"] = torrent_status["file_progress"].count(1.0)
message = _("The torrent \"%(name)s\" including %(num_files)i file(s) "
"has finished downloading.") % torrent_status
return title, message