@ducci/jarvis 1.0.85 → 1.0.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -804,7 +804,7 @@ export async function startTelegramChannel(config) {
|
|
|
804
804
|
transcription = await speechToText(audioBuffer, config);
|
|
805
805
|
} catch (e) {
|
|
806
806
|
console.error(`[telegram] STT error chat_id=${chatId}: ${e.message}`);
|
|
807
|
-
await ctx.reply(
|
|
807
|
+
await ctx.reply(`Voice transcription failed: ${e.message}`).catch(() => {});
|
|
808
808
|
return;
|
|
809
809
|
}
|
|
810
810
|
|