fix the records names to match the json object we receieve

This commit is contained in:
Damien Churchill 2010-03-27 12:56:18 +00:00
parent 323638a751
commit 4ec10575f3

View File

@ -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',