From 906f6d5f872b848fc7b3c5071c51a9696ce7c734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Benalc=C3=A1zar?= Date: Sun, 18 Apr 2021 13:31:59 +0200 Subject: [PATCH] Fix: Global Speed Title (upload & download were switched) (#218) Fix for global speed title. Download and upload speed were exchanged. --- src/actions/DocumentTitle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/DocumentTitle.js b/src/actions/DocumentTitle.js index 6875bc8f6a..9f8e122e63 100644 --- a/src/actions/DocumentTitle.js +++ b/src/actions/DocumentTitle.js @@ -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() {