Lonami
Lonami
I personally would try to inject some code to "skip" handling a message at a desired point (for example the 100th message or when a file exists), and then confirm...
For reference, this is the original issue: https://github.com/LonamiWebs/Telethon/issues/3116#issuecomment-885232825 The failing point is when `pyaes` is imported so I've assumed there's somehow an issue here.
Looks like there is no way to do this directly on Android. However [Android : save a Bitmap to bmp file format](http://stackoverflow.com/a/22914268) might help in a future.
> I dont feel like Draw needs it It's true that if an user *really* needs an alpha-like feature, they can as well choose a lighter colour or even combine...
And encoding as base64 can be done as follows (courtesy of [Stack Overflow](http://stackoverflow.com/a/9224180)): ```java // Get the bytes array ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream); byte[] byteArray =...
> I would prefer the linked object without the Base64 string If we use an absolute path, I think the `.svg` would be pretty useless once you move it out...
Not directly, and direct support is not planned. Regardless, that's out of scope for this issue. Which is probably safe to close in any case.
Gonna close this one since it's ancient. Can revisit in the future if there's interest.
Closing as this has been open for a long time with unresolved comments and no activity.
You can send a pull request yourself @iamDonkey. It should be simple. Simply add a new `fn` in [`lib.rs`](https://github.com/cher-nov/cryptg/blob/master/src/lib.rs) exposing the `calculate_2fa` method, and then add ```rust m.add_wrapped(wrap_pyfunction!(your_new_fn))?; ``` inside...