From 74f1be5452b70417787f0c8357c7d2d3c5b2f2a2 Mon Sep 17 00:00:00 2001 From: David Ernst Date: Sat, 8 Feb 2020 12:37:48 -0800 Subject: [PATCH] Remove unnecessary parentheses --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index 8e14adef..54e93c67 100644 --- a/src/config.js +++ b/src/config.js @@ -23,7 +23,7 @@ module.exports = { CRASH_REPORT_URL: 'https://webtorrent.io/desktop/crash-report', TELEMETRY_URL: 'https://webtorrent.io/desktop/telemetry', - APP_COPYRIGHT: `Copyright © 2014-${(new Date()).getFullYear()} ${APP_TEAM}`, + APP_COPYRIGHT: `Copyright © 2014-${new Date().getFullYear()} ${APP_TEAM}`, APP_FILE_ICON: path.join(__dirname, '..', 'static', 'WebTorrentFile'), APP_ICON: path.join(__dirname, '..', 'static', 'WebTorrent'), APP_NAME: APP_NAME,