We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Looks like this line of code makes all threads froze(blocks entire script) if a call is discarded by calling end so fast(0.5-2s after start):
pytgvoip_pyrogram/tgvoip_pyrogram/base_call.py
Line 134 in 13c0a19
And this helps to avoid that:
import time # ... del self.ctrl time.sleep(0) # ...
I am new in python and may wrong. Can someone to confirm that?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looks like this line of code makes all threads froze(blocks entire script) if a call is discarded by calling end so fast(0.5-2s after start):
pytgvoip_pyrogram/tgvoip_pyrogram/base_call.py
Line 134 in 13c0a19
And this helps to avoid that:
I am new in python and may wrong. Can someone to confirm that?
The text was updated successfully, but these errors were encountered: