We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get_item fails if pass item title of 26 characters in length.
get_item
if is_valid_uuid(item): return self.get_item_by_id(item, vault_id) else: return self.get_item_by_title(item, vault_id)
It should search by item title if title is has a length of 26. We try to get it by ID, and if that fails, try by title instead.
use get_item and pass item params as random 26 chars random string
item
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
get_item
fails if pass item title of 26 characters in length.What did you expect to happen?
It should search by item title if title is has a length of 26. We try to get it by ID, and if that fails, try by title instead.
Steps to reproduce
use
get_item
and passitem
params as random 26 chars random stringThe text was updated successfully, but these errors were encountered: