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:
Santiago Benalcázar 2021-04-18 13:31:59 +02:00 committed by GitHub
parent b55ed687ee
commit 906f6d5f87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() {