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
Referencing this line of code in has_selected_custom_field:
has_selected_custom_field
https://github.com/singer-io/tap-hubspot/blob/master/tap_hubspot/__init__.py#L488
Specifically, the len(x) == 2 conditional.
len(x) == 2
If all of my requests for property values in the catalog are very specific, like this:
{ "breadcrumb": [ "properties", "property_hs_lastmodifieddate", "properties", "value" ], "metadata": { "selected": true } },
That conditional will result in me getting no properties at all. A very simple fix would be to replace with len(x) >= 2.
len(x) >= 2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Referencing this line of code in
has_selected_custom_field
:https://github.com/singer-io/tap-hubspot/blob/master/tap_hubspot/__init__.py#L488
Specifically, the
len(x) == 2
conditional.If all of my requests for property values in the catalog are very specific, like this:
That conditional will result in me getting no properties at all. A very simple fix would be to replace with
len(x) >= 2
.The text was updated successfully, but these errors were encountered: