Skip to content

Commit bd56250

Browse files
committed
Updated links
1 parent 940c55b commit bd56250

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/source/topics/text-formatting.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To strictly use this mode, pass :obj:`~pyrogram.enums.ParseMode.MARKDOWN` to the
5858
5959
||spoiler||
6060
61-
[text URL](https://pyrogrammod.github.io/)
61+
[text URL](https://pyrogrammod.readthedocs.io/)
6262
6363
[text user mention](tg://user?id=123456789)
6464
@@ -112,7 +112,7 @@ To strictly use this mode, pass :obj:`~pyrogram.enums.HTML` to the *parse_mode*
112112
113113
<spoiler>spoiler</spoiler>
114114
115-
<a href="https://pyrogrammod.github.io/">text URL</a>
115+
<a href="https://pyrogrammod.readthedocs.io/">text URL</a>
116116
117117
<a href="tg://user?id=123456789">inline mention</a>
118118
@@ -140,7 +140,7 @@ To strictly use this mode, pass :obj:`~pyrogram.enums.HTML` to the *parse_mode*
140140
"<u>underline</u>, "
141141
"<s>strike</s>, "
142142
"<spoiler>spoiler</spoiler>, "
143-
"<a href=\"https://pyrogrammod.github.io/\">URL</a>, "
143+
"<a href=\"https://pyrogrammod.readthedocs.io/\">URL</a>, "
144144
"<code>code</code>\n\n"
145145
"<pre>"
146146
"for i in range(10):\n"

pyrogram/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ async def load_session(self):
632632
if session_empty:
633633
if not self.api_id or not self.api_hash:
634634
raise AttributeError("The API key is required for new authorizations. "
635-
"More info: https://pyrogrammod.github.io/start/auth")
635+
"More info: https://pyrogrammod.readthedocs.io/start/auth")
636636

637637
await self.storage.api_id(self.api_id)
638638

pyrogram/crypto/aes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def xor(a: bytes, b: bytes) -> bytes:
5454
log.warning(
5555
"TgCrypto is missing! "
5656
"Pyrogram will work the same, but at a much slower speed. "
57-
"More info: https://pyrogrammod.github.io/topics/speedups"
57+
"More info: https://pyrogrammod.readthedocs.io/topics/speedups"
5858
)
5959

6060

pyrogram/methods/users/update_profile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async def update_profile(
5555
await app.update_profile(first_name="Pyrogram")
5656
5757
# Update first name and bio
58-
await app.update_profile(first_name="Pyrogram", bio="https://pyrogrammod.github.io/")
58+
await app.update_profile(first_name="Pyrogram", bio="https://pyrogrammod.readthedocs.io/")
5959
6060
# Remove the last name
6161
await app.update_profile(last_name="")

0 commit comments

Comments
 (0)