Skip to content

Commit

Permalink
Fix broken store listing endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfies committed Jul 31, 2024
1 parent 0efe26e commit cbf0f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discord/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -3516,7 +3516,7 @@ def get_store_listing(
if not localize:
params['localize'] = 'false'

return self.request(Route('GET', '/store/listings/{listing_id}', app_id=listing_id), params=params)
return self.request(Route('GET', '/store/listings/{listing_id}', listing_id=listing_id), params=params)

def get_store_listing_by_sku(
self,
Expand Down

0 comments on commit cbf0f7a

Please sign in to comment.