We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f183a8 commit 80a425dCopy full SHA for 80a425d
methods/generate.js
@@ -91,7 +91,13 @@ module.exports = async (parm) => {
91
// Normalize all messages first (sync, no I/O)
92
const validMessages = parm.messages.filter(Boolean)
93
for (const message of validMessages) {
94
+ if (message.avatar) {
95
+ console.log('[DEBUG-AVATAR] before normalize:', JSON.stringify(message.from))
96
+ }
97
normalizeMessage(message)
98
99
+ console.log('[DEBUG-AVATAR] after normalize:', JSON.stringify(message.from))
100
101
}
102
103
// Generate quotes with concurrency limit to avoid Telegram API rate limits
0 commit comments