Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

Nicolagg
Copy link

@Nicolagg Nicolagg commented Apr 1, 2024

Description:

When running the list_chats method in the TelegramForwarder class, there's an issue with encoding Unicode characters when writing chat details to a file. This results in a UnicodeEncodeError with the message 'charmap' codec can't encode character. This typically happens when non-ASCII characters are encountered, such as emojis or non-Latin characters.

Proposed Solution:
To fix this issue, we can explicitly specify the UTF-8 encoding when opening the file for writing chat details. This encoding supports Unicode characters universally and should prevent encoding errors.

chats_file = open(f"chats_of_{self.phone_number}.txt", "w", encoding="utf-8") # Specify encoding

add can explicitly specify the UTF-8 encoding when opening the file for writing chat details. This encoding supports Unicode characters universally and should prevent encoding errors.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant