[CodeFactor] Apply fixes
parent
a1afbbde20
commit
ae32a80d2a
|
@ -60,11 +60,7 @@ async function main() {
|
||||||
|
|
||||||
// Log in the platform
|
// Log in the platform
|
||||||
console.log("Authenticating...");
|
console.log("Authenticating...");
|
||||||
const result = await login(
|
const result = await login(process.env.F95_USERNAME, process.env.F95_PASSWORD, insert2faCode);
|
||||||
process.env.F95_USERNAME,
|
|
||||||
process.env.F95_PASSWORD,
|
|
||||||
insert2faCode
|
|
||||||
);
|
|
||||||
console.log(`Authentication result: ${result.message}\n`);
|
console.log(`Authentication result: ${result.message}\n`);
|
||||||
|
|
||||||
// Manage failed login
|
// Manage failed login
|
||||||
|
@ -87,9 +83,7 @@ async function main() {
|
||||||
latestQuery.includedTags = ["3d game"];
|
latestQuery.includedTags = ["3d game"];
|
||||||
|
|
||||||
const latestUpdates = await getLatestUpdates<Game>(latestQuery, 1);
|
const latestUpdates = await getLatestUpdates<Game>(latestQuery, 1);
|
||||||
console.log(
|
console.log(`"${latestUpdates.shift().name}" was the last "3d game" tagged game to be updated\n`);
|
||||||
`"${latestUpdates.shift().name}" was the last "3d game" tagged game to be updated\n`
|
|
||||||
);
|
|
||||||
|
|
||||||
// Get game data
|
// Get game data
|
||||||
for (const gamename of gameList) {
|
for (const gamename of gameList) {
|
||||||
|
|
Loading…
Reference in New Issue