Skip to content

Commit

Permalink
Fix: Global Speed Title (upload & download were switched) (#218)
Browse files Browse the repository at this point in the history
Fix for global speed title.
Download and upload speed were exchanged.
  • Loading branch information
Santiago Benalcázar committed Apr 18, 2021
1 parent b55ed68 commit 906f6d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/DocumentTitle.js
Expand Up @@ -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() {
Expand Down

0 comments on commit 906f6d5

Please sign in to comment.