mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
fix: altspeed value
This commit is contained in:
parent
80573f4364
commit
aadb3f2171
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ export default class Status {
|
|||
this.dlspeed = dl_info_speed || 0
|
||||
this.upspeed = up_info_speed || 0
|
||||
this.freeDiskSpace = free_space_on_disk || previous.freeDiskSpace
|
||||
this.altSpeed = use_alt_speed_limits || previous.altSpeed
|
||||
this.altSpeed = use_alt_speed_limits !== undefined ? use_alt_speed_limits : previous.altSpeed
|
||||
this.dlspeedRaw = this.formatSpeed(dl_info_speed) || 0
|
||||
this.upspeedRaw = this.formatSpeed(up_info_speed) || 0
|
||||
Object.freeze(this)
|
||||
|
|
Loading…
Add table
Reference in a new issue