diff --git a/app/index.js b/app/index.js index b1c1f59..38dc8e7 100644 --- a/app/index.js +++ b/app/index.js @@ -98,7 +98,6 @@ var _browser = null; * @returns {Promise} Result of the operation */ module.exports.login = async function (username, password) { - if (shared.isLogged) { if (shared.debug) console.log("Already logged in"); let result = new LoginResult(); @@ -146,7 +145,6 @@ module.exports.login = async function (username, password) { * @returns {Promise} Result of the operation */ module.exports.loadF95BaseData = async function () { - if (!shared.isLogged || !shared.cookies) { console.warn("User not authenticated, unable to continue"); return false; @@ -196,7 +194,6 @@ module.exports.loadF95BaseData = async function () { * @returns {Promise} true if an update is available, false otherwise */ module.exports.chekIfGameHasUpdate = async function (info) { - if (!shared.isLogged || !shared.cookies) { console.warn("user not authenticated, unable to continue"); return info.version; @@ -227,7 +224,6 @@ module.exports.chekIfGameHasUpdate = async function (info) { * an identified game (in the case of homonymy). If no games were found, null is returned */ module.exports.getGameData = async function (name, includeMods) { - if (!shared.isLogged || !shared.cookies) { console.warn("user not authenticated, unable to continue"); return null; @@ -265,7 +261,6 @@ module.exports.getGameData = async function (name, includeMods) { * @returns {Promise} Information about the game. If no game was found, null is returned */ module.exports.getGameDataFromURL = async function (url) { - if (!shared.isLogged || !shared.cookies) { console.warn("user not authenticated, unable to continue"); return null; @@ -292,7 +287,6 @@ module.exports.getGameDataFromURL = async function (url) { * @returns {Promise} Data of the user currently logged in or null if an error arise */ module.exports.getUserData = async function () { - if (!shared.isLogged || !shared.cookies) { console.warn("user not authenticated, unable to continue"); return null; @@ -339,7 +333,6 @@ module.exports.getUserData = async function () { * You **must** be logged in to the portal before calling this method. */ module.exports.logout = async function () { - if (!shared.isLogged || !shared.cookies) { console.warn("user not authenticated, unable to continue"); return;