diff --git a/app/scripts/classes/game-download.js b/app/scripts/classes/game-download.js index 6381cfc..4cc5868 100644 --- a/app/scripts/classes/game-download.js +++ b/app/scripts/classes/game-download.js @@ -89,7 +89,7 @@ async function downloadNOPY(url, savepath) { // Set the save path await page._client.send("Page.setDownloadBehavior", { behavior: "allow", - downloadPath: path.basename(path.dirname(savepath)), // Is a directory + downloadPath: path.basename(path.dirname(savepath)), // It's a directory }); // Obtain the download button and click it diff --git a/app/scripts/classes/login-result.js b/app/scripts/classes/login-result.js index 93d1782..15eb311 100644 --- a/app/scripts/classes/login-result.js +++ b/app/scripts/classes/login-result.js @@ -1,4 +1,4 @@ -'use strict'; +"use strict"; /** * Object obtained in response to an attempt to login to the portal. @@ -14,7 +14,7 @@ class LoginResult { * Login response message * @type String */ - this.message = ''; + this.message = ""; } } -module.exports = LoginResult; \ No newline at end of file +module.exports = LoginResult; diff --git a/app/scripts/constants/urls.js b/app/scripts/constants/urls.js index da54df4..816a00a 100644 --- a/app/scripts/constants/urls.js +++ b/app/scripts/constants/urls.js @@ -1,7 +1,7 @@ module.exports = Object.freeze({ - F95_BASE_URL: 'https://f95zone.to', - F95_SEARCH_URL: 'https://f95zone.to/search', - F95_LATEST_UPDATES: 'https://f95zone.to/latest', - F95_LOGIN_URL: 'https://f95zone.to/login', - F95_WATCHED_THREADS: 'https://f95zone.to/watched/threads', -}); \ No newline at end of file + F95_BASE_URL: "https://f95zone.to", + F95_SEARCH_URL: "https://f95zone.to/search", + F95_LATEST_UPDATES: "https://f95zone.to/latest", + F95_LOGIN_URL: "https://f95zone.to/login", + F95_WATCHED_THREADS: "https://f95zone.to/watched/threads", +});