Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v3.12.3

### Fixes

* Fix `ParsingError` being raised on the first and last submission of a user's gallery/scraps

## v3.12.2

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion faapi/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.12.2"
__version__ = "3.12.3"
2 changes: 0 additions & 2 deletions faapi/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,6 @@ def parse_submission_page(sub_page: BeautifulSoup) -> dict[str, Any]:
assert tag_description is not None, _raise_exception(ParsingError("Missing description tag"))
assert tag_folder is not None, _raise_exception(ParsingError("Missing folder tag"))
assert tag_file_url is not None, _raise_exception(ParsingError("Missing file URL tag"))
assert tag_prev is not None, _raise_exception(ParsingError("Missing prev tag"))
assert tag_next is not None, _raise_exception(ParsingError("Missing next tag"))

tag_footer: Optional[Tag] = tag_description.select_one("div.submission-footer")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "faapi"
version = "3.12.2"
version = "3.12.3"
description = "Python module to implement API-like functionality for the FurAffinity.net website."
authors = ["Matteo Campinoti <matteo.campinoti94@gmail.com>"]
license = "EUPL-1.2"
Expand Down
Loading