fix: prettier formatting for telegram.ts
Pre-existing formatting issue that causes CI format check to fail. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -117,8 +117,15 @@ export class TelegramChannel implements Channel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Store chat metadata for discovery
|
// Store chat metadata for discovery
|
||||||
const isGroup = ctx.chat.type === 'group' || ctx.chat.type === 'supergroup';
|
const isGroup =
|
||||||
this.opts.onChatMetadata(chatJid, timestamp, chatName, 'telegram', isGroup);
|
ctx.chat.type === 'group' || ctx.chat.type === 'supergroup';
|
||||||
|
this.opts.onChatMetadata(
|
||||||
|
chatJid,
|
||||||
|
timestamp,
|
||||||
|
chatName,
|
||||||
|
'telegram',
|
||||||
|
isGroup,
|
||||||
|
);
|
||||||
|
|
||||||
// Only deliver full message for registered groups
|
// Only deliver full message for registered groups
|
||||||
const group = this.opts.registeredGroups()[chatJid];
|
const group = this.opts.registeredGroups()[chatJid];
|
||||||
@@ -161,8 +168,15 @@ export class TelegramChannel implements Channel {
|
|||||||
'Unknown';
|
'Unknown';
|
||||||
const caption = ctx.message.caption ? ` ${ctx.message.caption}` : '';
|
const caption = ctx.message.caption ? ` ${ctx.message.caption}` : '';
|
||||||
|
|
||||||
const isGroup = ctx.chat.type === 'group' || ctx.chat.type === 'supergroup';
|
const isGroup =
|
||||||
this.opts.onChatMetadata(chatJid, timestamp, undefined, 'telegram', isGroup);
|
ctx.chat.type === 'group' || ctx.chat.type === 'supergroup';
|
||||||
|
this.opts.onChatMetadata(
|
||||||
|
chatJid,
|
||||||
|
timestamp,
|
||||||
|
undefined,
|
||||||
|
'telegram',
|
||||||
|
isGroup,
|
||||||
|
);
|
||||||
this.opts.onMessage(chatJid, {
|
this.opts.onMessage(chatJid, {
|
||||||
id: ctx.message.message_id.toString(),
|
id: ctx.message.message_id.toString(),
|
||||||
chat_jid: chatJid,
|
chat_jid: chatJid,
|
||||||
@@ -176,9 +190,7 @@ export class TelegramChannel implements Channel {
|
|||||||
|
|
||||||
this.bot.on('message:photo', (ctx) => storeNonText(ctx, '[Photo]'));
|
this.bot.on('message:photo', (ctx) => storeNonText(ctx, '[Photo]'));
|
||||||
this.bot.on('message:video', (ctx) => storeNonText(ctx, '[Video]'));
|
this.bot.on('message:video', (ctx) => storeNonText(ctx, '[Video]'));
|
||||||
this.bot.on('message:voice', (ctx) =>
|
this.bot.on('message:voice', (ctx) => storeNonText(ctx, '[Voice message]'));
|
||||||
storeNonText(ctx, '[Voice message]'),
|
|
||||||
);
|
|
||||||
this.bot.on('message:audio', (ctx) => storeNonText(ctx, '[Audio]'));
|
this.bot.on('message:audio', (ctx) => storeNonText(ctx, '[Audio]'));
|
||||||
this.bot.on('message:document', (ctx) => {
|
this.bot.on('message:document', (ctx) => {
|
||||||
const name = ctx.message.document?.file_name || 'file';
|
const name = ctx.message.document?.file_name || 'file';
|
||||||
|
|||||||
Reference in New Issue
Block a user