Skip to content

Commit

Permalink
Merge pull request #649 from UnitapApp/feature/telegram/implementation
Browse files Browse the repository at this point in the history
fixed telegram api errors
  • Loading branch information
alimaktabi authored Oct 30, 2024
2 parents 01822ff + 9687c03 commit ddc4ffb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions telegram/messages/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

about_text = """**About Unitap**
Welcome to Unitap, your smart companion for managing tasks, getting updates, and automating processes! Whether you're working on a project, organizing events, or just need help staying on top of things, Unitap is here to assist.
Welcome to Unitap, your smart companion for managing tasks, getting updates, and automating processes\! Whether you're working on a project, organizing events, or just need help staying on top of things, Unitap is here to assist.
With Unitap, you can:
\- **Receive timely notifications** for important events.
\- **Submit and track issues** directly within your workspace.
\- **Connect with services** and streamline your workflow.
\- **Ask for help or request hints** to navigate challenges.
Unitap is designed to integrate seamlessly with your tools, making your work life smoother and more efficient. Start interacting today by typing `/help` to see available commands!
Unitap is designed to integrate seamlessly with your tools, making your work life smoother and more efficient. Start interacting today by typing `/help` to see available commands\!
read more here https://unitap.app/about
"""
Expand Down
2 changes: 1 addition & 1 deletion telegram/messages/gastap_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ def handler(self, message: types.Message):

rendered_message = template.render(context)

self.messenger.reply_to(message, text=rendered_message, parse_mode="MarkdownV2")
self.messenger.reply_to(message, text=rendered_message)
2 changes: 1 addition & 1 deletion telegram/messages/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

home_markup.add(types.KeyboardButton("Stats of gastap"))

home_markup.add(types.KeyboardButton("Report bug 🪲"))
home_markup.add(types.KeyboardButton("Report a bug 🪲"))

home_markup.add(types.KeyboardButton("About Unitap ❓"))

0 comments on commit ddc4ffb

Please sign in to comment.