mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 09:28:41 +00:00
Fix #1268, Torrent errors not displayed in webui
This commit is contained in:
parent
816f3ff6d2
commit
5be93cd5d8
2 changed files with 7 additions and 7 deletions
|
@ -86,7 +86,7 @@ Deluge.Keys = {
|
||||||
* Keys used in the details tab of the statistics panel.
|
* Keys used in the details tab of the statistics panel.
|
||||||
*/
|
*/
|
||||||
Details: [
|
Details: [
|
||||||
'name', 'save_path', 'total_size', 'num_files', 'tracker_status',
|
'name', 'save_path', 'total_size', 'num_files', 'message',
|
||||||
'tracker', 'comment'
|
'tracker', 'comment'
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
@ -100,7 +100,7 @@ Deluge.details.DetailsTab = Ext.extend(Ext.Panel, {
|
||||||
path: torrent.save_path,
|
path: torrent.save_path,
|
||||||
size: fsize(torrent.total_size),
|
size: fsize(torrent.total_size),
|
||||||
files: torrent.num_files,
|
files: torrent.num_files,
|
||||||
status: torrent.tracker_status,
|
status: torrent.message,
|
||||||
tracker: torrent.tracker,
|
tracker: torrent.tracker,
|
||||||
comment: torrent.comment
|
comment: torrent.comment
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue