mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-07 00:48:41 +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',
|
name: 'country',
|
||||||
type: 'string'
|
type: 'string'
|
||||||
}, {
|
}, {
|
||||||
name: 'address',
|
name: 'ip',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
sortType: Deluge.Sorters.ipSorter
|
sortType: Deluge.Sorters.ipSorter
|
||||||
}, {
|
}, {
|
||||||
|
@ -59,10 +59,10 @@ Deluge.data.Peer = Ext.data.Record.create([
|
||||||
name: 'progress',
|
name: 'progress',
|
||||||
type: 'float'
|
type: 'float'
|
||||||
}, {
|
}, {
|
||||||
name: 'downspeed',
|
name: 'down_speed',
|
||||||
type: 'int'
|
type: 'int'
|
||||||
}, {
|
}, {
|
||||||
name: 'upspeed',
|
name: 'up_speed',
|
||||||
type: 'int'
|
type: 'int'
|
||||||
}, {
|
}, {
|
||||||
name: 'seed',
|
name: 'seed',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue