Skip to content

Commit

Permalink
🐛 bad data
Browse files Browse the repository at this point in the history
  • Loading branch information
Vivien Mouret committed Jul 16, 2024
1 parent 3f0457b commit fe29a70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/daftbot.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ class DaftBot {
console.log(`[${getCurrentDatetime('comm')}] Error GET AXIOS ${err}`);
});
if (ax == undefined) { continue; };
console.log(`[${getCurrentDatetime('comm')}] AXIOS WHILEDAFT ${ax.data.data[0].game_name}`);
console.log(`[${getCurrentDatetime('comm')}] AXIOS WHILEDAFT ${ax.data.data}`);

if (!checkLive || ax.data.data.length == 0) {
gameMemory = '';
Expand Down
2 changes: 1 addition & 1 deletion core/mobbot.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class MobBot {
});

if (ax == undefined) { break; };
console.log(`[${getCurrentDatetime('comm')}] AXIOS WHILEMOB ${ax.data.data[0].game_name}`);
console.log(`[${getCurrentDatetime('comm')}] AXIOS WHILEMOB ${ax.data.data}`);

if (!checkLive || ax.data.data.length == 0) {
gameMemory = '';
Expand Down

0 comments on commit fe29a70

Please sign in to comment.