1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-03-13 05:41:17 +00:00

Remove wrong parentheses

Fix up 87ad8a149524bb48d73f8084fedc03c5c5e1cc38.
This commit is contained in:
Chocobo1 2021-03-23 17:09:24 +08:00
parent 87ad8a1495
commit 901fca2d12
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -1103,7 +1103,7 @@ window.qBittorrent.DynamicTable = (function() {
// eta
this.columns['eta'].updateTd = function(td, row) {
const eta = window.qBittorrent.Misc.friendlyDuration(this.getRowValue(row), window.qBittorrent.Misc.MAX_ETA));
const eta = window.qBittorrent.Misc.friendlyDuration(this.getRowValue(row), window.qBittorrent.Misc.MAX_ETA);
td.set('text', eta);
td.set('title', eta);
};