mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
fix the records names to match the json object we receieve
This commit is contained in:
parent
323638a751
commit
4ec10575f3
1 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ Deluge.data.Peer = Ext.data.Record.create([
|
|||
name: 'country',
|
||||
type: 'string'
|
||||
}, {
|
||||
name: 'address',
|
||||
name: 'ip',
|
||||
type: 'string',
|
||||
sortType: Deluge.Sorters.ipSorter
|
||||
}, {
|
||||
|
@ -59,10 +59,10 @@ Deluge.data.Peer = Ext.data.Record.create([
|
|||
name: 'progress',
|
||||
type: 'float'
|
||||
}, {
|
||||
name: 'downspeed',
|
||||
name: 'down_speed',
|
||||
type: 'int'
|
||||
}, {
|
||||
name: 'upspeed',
|
||||
name: 'up_speed',
|
||||
type: 'int'
|
||||
}, {
|
||||
name: 'seed',
|
||||
|
|
Loading…
Add table
Reference in a new issue