Merge pull request #23 from npdkdev/main

fix some derps
This commit is contained in:
2023-09-28 19:44:52 +07:00 committed by GitHub
commit fea4a9a34b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@
from typing import Union
import pyrogram
from pyrogram import raw
from pyrogram import raw, types
class SendInlineBotResult:

View file

@ -59,7 +59,7 @@ class ExportStoryLink:
peer = await self.resolve_peer(from_id)
rpc = raw.functions.stories.ExportStoryLink(peer=peer, story_id=story_id)
rpc = raw.functions.stories.ExportStoryLink(peer=peer, id=story_id)
r = await self.invoke(rpc, sleep_threshold=-1)