Skip to content

Commit

Permalink
Merge pull request #23 from npdkdev/main
Browse files Browse the repository at this point in the history
fix some derps
  • Loading branch information
wulan17 authored Sep 28, 2023
2 parents bc3d258 + 885eb4b commit fea4a9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyrogram/methods/bots/send_inline_bot_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from typing import Union

import pyrogram
from pyrogram import raw
from pyrogram import raw, types


class SendInlineBotResult:
Expand Down
2 changes: 1 addition & 1 deletion pyrogram/methods/users/export_story_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async def export_story_link(

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)

Expand Down

0 comments on commit fea4a9a

Please sign in to comment.