Fix documentation URLs

This commit is contained in:
Martin Müller 2024-07-25 12:44:47 +02:00
parent 3120fb2340
commit 4c99132f3b
3 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ async def hello(client, message):
app.run() 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 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. identity (bot API alternative) using Python.

View file

@ -723,7 +723,7 @@ class Client(Methods):
if session_empty: if session_empty:
if not self.api_id or not self.api_hash: if not self.api_id or not self.api_hash:
raise AttributeError("The API key is required for new authorizations. " 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) await self.storage.api_id(self.api_id)

View file

@ -55,7 +55,7 @@ except ImportError:
log.warning( log.warning(
"TgCrypto is missing! " "TgCrypto is missing! "
"Pyrogram will work the same, but at a much slower speed. " "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"
) )