Skip to content

Commit

Permalink
Fix bool value for javascript, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nakedmcse committed Mar 20, 2024
1 parent 9e651d6 commit 69db95c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "waifuvault"
version = "1.2.1"
version = "1.2.2"
authors = [
{ name="Walker Aldridge", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/waifuvault/waifuvault.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def file_update(token: str, password: str = None, previous_password: str = None,
data={'password': password,
'previousPassword': previous_password,
'customExpiry': custom_expiry,
'hideFilename': hide_filename
'hideFilename': "true" if hide_filename else "false"
}
)
__check_error(response, False)
Expand Down

0 comments on commit 69db95c

Please sign in to comment.