diff --git a/pyrogram/crypto/ige.py b/pyrogram/crypto/ige.py index ac061188..06bddfe2 100644 --- a/pyrogram/crypto/ige.py +++ b/pyrogram/crypto/ige.py @@ -16,7 +16,11 @@ # You should have received a copy of the GNU Lesser General Public License # along with Pyrogram. If not, see . -from pyaes import AES +# TODO: Workaround +try: + from pyaes import AES +except ImportError: + pass BLOCK_SIZE = 16