khoben
khoben
Сейчас сохраняется только ID сообщений в исходном канале. Я думаю, если сообщение является репостом (`event.message.fwd_from` is not None), то надо собирать `event.message.fwd_from.from_id` и `event.message.fwd_from.channel_post` и не пропускать следующие репосты с...
Temporary hack: ```python class Base64String: """String mimics to bytes decoding""" def __init__(self, base64: str) -> None: self.base64 = base64 def decode(self, *args, **kwargs) -> str: return self.base64 @dataclass class ImageBase64StringCaptcha(ImageCaptcha):...
> Update: > While Telethon is running, if a message is sent in the monitored channel and the `events.NewMessage` event is not triggered. It can be triggered manually if you...
> I wonder if anybody has done reading the source code of official Android/iOS telegram app and find out what (hack) they use for new message event instead? It seems...
> > Actually, with official clients exactly the same problem, some channels are updated only when you open them. > > Oh yeah, totally missed that. I opened my Telegram...
I faced the same problem. the project was not built during the whole day. But in the end, some tricks were found that helped reduce assembly time to a few...