Fix #1268, Torrent errors not displayed in webui

This commit is contained in:
Damien Churchill 2011-05-06 22:22:29 +01:00
parent 5ad21303c6
commit 95819c79e5
2 changed files with 7 additions and 7 deletions

View File

@ -86,7 +86,7 @@ Deluge.Keys = {
* Keys used in the details tab of the statistics panel.
*/
Details: [
'name', 'save_path', 'total_size', 'num_files', 'tracker_status',
'name', 'save_path', 'total_size', 'num_files', 'message',
'tracker', 'comment'
],

View File

@ -100,7 +100,7 @@ Deluge.details.DetailsTab = Ext.extend(Ext.Panel, {
path: torrent.save_path,
size: fsize(torrent.total_size),
files: torrent.num_files,
status: torrent.tracker_status,
status: torrent.message,
tracker: torrent.tracker,
comment: torrent.comment
};