diff --git a/README.md b/README.md index 6392fdb0..d6c821bc 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ async def hello(client, message): app.run() ``` -**Pyrofork** is a modern, elegant and asynchronous [MTProto API](https://pyrofork.mayuri.my.id/topics/mtproto-vs-botapi) +**Pyrofork** is a modern, elegant and asynchronous [MTProto API](https://pyrofork.mayuri.my.id/main/topics/mtproto-vs-botapi) framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot identity (bot API alternative) using Python. diff --git a/pyrogram/client.py b/pyrogram/client.py index a6dffe2c..07de9acb 100644 --- a/pyrogram/client.py +++ b/pyrogram/client.py @@ -723,7 +723,7 @@ class Client(Methods): if session_empty: if not self.api_id or not self.api_hash: raise AttributeError("The API key is required for new authorizations. " - "More info: https://pyrofork.mayuri.my.id/start/auth") + "More info: https://pyrofork.mayuri.my.id/main/start/auth") await self.storage.api_id(self.api_id) diff --git a/pyrogram/crypto/aes.py b/pyrogram/crypto/aes.py index 7e139d6a..3a7a9209 100644 --- a/pyrogram/crypto/aes.py +++ b/pyrogram/crypto/aes.py @@ -55,7 +55,7 @@ except ImportError: log.warning( "TgCrypto is missing! " "Pyrogram will work the same, but at a much slower speed. " - "More info: https://pyrofork.mayuri.my.id/topics/speedups" + "More info: https://pyrofork.mayuri.my.id/main/topics/speedups" )