Skip to content

Commit

Permalink
chore: Bump package versions to 1.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
n4ze3m committed Aug 13, 2024
1 parent 10f544b commit e1f1585
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "app",
"private": true,
"version": "1.9.5",
"version": "1.9.6",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dialoqbase",
"version": "1.9.5",
"version": "1.9.6",
"description": "Create chatbots with ease",
"scripts": {
"ui:dev": "pnpm run --filter ui dev",
Expand Down
8 changes: 6 additions & 2 deletions server/src/integration/telegram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ export default class TelegramBot {
user_id
);

return await ctx.reply(message);
return await ctx.reply(message, {
parse_mode: "MarkdownV2",
});
});

bot.on("message:voice", async (ctx) => {
Expand All @@ -100,7 +102,9 @@ export default class TelegramBot {
user_id
);

return await ctx.reply(message);
return await ctx.reply(message, {
parse_mode: "MarkdownV2",
});
} catch (error) {
console.log(error);
return await ctx.reply("Opps! Something went wrong");
Expand Down

0 comments on commit e1f1585

Please sign in to comment.