Compare commits

..

1 commit

Author SHA1 Message Date
zxsrxt
dbc92852e8
Merge 200d6fcbd7 into 47a3b6179d 2025-12-11 01:30:17 +07:00
3 changed files with 6 additions and 3 deletions

View file

@ -18,7 +18,7 @@
# along with Pyrofork. If not, see <http://www.gnu.org/licenses/>.
__fork_name__ = "PyroFork"
__version__ = "2.3.69"
__version__ = "2.3.68"
__license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)"
__copyright__ = "Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>"

View file

@ -25,7 +25,7 @@ class ExportFolderLink:
async def export_folder_link(
self: "pyrogram.Client",
folder_id: int
) -> "pyrogram.types.ExportedFolderLink":
) -> str:
"""Export link to a user's folder.
.. include:: /_includes/usable-by/users.rst
@ -35,7 +35,7 @@ class ExportFolderLink:
Unique identifier (int) of the target folder.
Returns:
:obj:`~pyrogram.types.ExportedFolderLink` objects.
``str``: On success, a link to the folder as string is returned.
Example:
.. code-block:: python

View file

@ -159,6 +159,9 @@ class SendCachedMedia:
media = utils.get_input_media_from_file_id(file_id)
media.spoiler = has_spoiler
media = utils.get_input_media_from_file_id(file_id)
media.spoiler = has_spoiler
r = await self.invoke(
raw.functions.messages.SendMedia(
peer=await self.resolve_peer(chat_id),