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.11.9

### Fixes

* Fix `KeyError` raised when parsing a submission or journal with hidden comments

## v3.11.8

### Changes
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.11.8"
__version__ = "3.11.9"
1 change: 1 addition & 0 deletions faapi/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,7 @@ def parse_comment_tag(tag: Tag) -> dict:
return {
"id": comment_id,
"user_name": "",
"user_display_name": "",
"user_title": "",
"avatar_url": "",
"timestamp": 0,
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.11.8"
version = "3.11.9"
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