We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8587311 commit 8c45f17Copy full SHA for 8c45f17
CHANGES.rst
@@ -59,6 +59,10 @@ Unreleased
59
- :meth:`.SubredditCollections.__call__`
60
- :meth:`.SubredditHelper.__call__`
61
62
+**Fixed**
63
+
64
+- An issue where submitting a gallery post with websockets enabled would fail.
65
66
**Removed**
67
68
- Remove ``Reddit.random_subreddit``, ``Subreddit.random``, and
asyncpraw/models/reddit/subreddit.py
@@ -3511,7 +3511,7 @@ async def submit_gallery(
3511
media_path=image["image_path"],
3512
upload_type="gallery",
3513
)
3514
- )[0],
+ ),
3515
})
3516
response = await self._reddit.request(json=data, method="POST", path=API_PATH["submit_gallery_post"])
3517
response = response["json"]
0 commit comments