mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-14 12:10:18 +03:00
Fix: Global Speed Title (upload & download were switched) (#218)
Fix for global speed title. Download and upload speed were exchanged.
This commit is contained in:
parent
b55ed687ee
commit
906f6d5f87
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ export class DocumentTitle {
|
|||
|
||||
static setGlobalSpeed() {
|
||||
const status = store.getters.getStatus()
|
||||
this.set(`[D: ${formatBytes(status.upspeed)}/s, U: ${formatBytes(status.dlspeed)}/s] VueTorrent`)
|
||||
this.set(`[D: ${formatBytes(status.dlspeed)}/s, U: ${formatBytes(status.upspeed)}/s] VueTorrent`)
|
||||
}
|
||||
|
||||
static setFirstTorrentStatus() {
|
||||
|
|
Loading…
Add table
Reference in a new issue