I'm using Telethon to forward messages from A group to B channel. But some of the documents were not able to be forwarded with the following log:
restriction_reason=[
RestrictionReason(platform='ios',
reason='porn', text="This message couldn't be displayed on your device because it contains pornographic materials.")
]
So I use functions.account.GetContentSettingsRequest()
to check my setting and here is the result:
ContentSettings(sensitive_enabled=False, sensitive_can_change=True)
I looks like
the sensitive content lock has been disabled, but how can I still get this restriction message?
Does someone encounter the same problem?