From 9a567721a8bde53f6dcf984cd7adcbfafff561ae Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 6 Mar 2021 14:43:13 +0800 Subject: [PATCH] Add missing semicolon --- src/webui/www/private/rename_file.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/www/private/rename_file.html b/src/webui/www/private/rename_file.html index 19b5dcbe6..fb48780a3 100644 --- a/src/webui/www/private/rename_file.html +++ b/src/webui/www/private/rename_file.html @@ -58,7 +58,7 @@ $('renameButton').disabled = true; - const parentPath = window.qBittorrent.Filesystem.folderName(oldPath) + const parentPath = window.qBittorrent.Filesystem.folderName(oldPath); const newPath = parentPath ? parentPath + window.qBittorrent.Filesystem.PathSeparator + newName : newName;