Skip to content

Commit

Permalink
🐛 упс
Browse files Browse the repository at this point in the history
  • Loading branch information
relitrix committed Sep 1, 2024
1 parent 7dece08 commit 54eda0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose-production.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.8'
services:
trackcombot:
image: ghcr.io/relitrix/trackcombot:latest
image: ghcr.io/relitrix/trackcombot:test
restart: always
env_file:
- .env.production
Expand Down
2 changes: 1 addition & 1 deletion src/jobs/commentsWave.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = async () => {
console.error(e)
}
if (!basicInfo?.basicInfo?.title || !basicInfo?.basic_info?.thumbnail?.[0]?.url) {
console.log(`Failed to fetch basicInfo.\nmapSize: ${videobasicInfos.size}\nlastMapItem: ${JSON.stringify(videobasicInfos.pop(), undefined, 4)}\nvideoId: ${comm.vidId}\nbasicInfo:${JSON.stringify(basicInfo, undefined, 4)}`)
console.log(`Failed to fetch basicInfo.\nmapSize: ${videobasicInfos.size}\nlastMapItem: ${JSON.stringify(videobasicInfos.values().pop(), undefined, 4)}\nvideoId: ${comm.vidId}\nbasicInfo:${JSON.stringify(basicInfo, undefined, 4)}`)
}
return buildEmbed({
title: basicInfo?.basic_info?.title,
Expand Down

0 comments on commit 54eda0e

Please sign in to comment.