You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
When I send json with custom tags, they are simply ignored and empty tags object is sent instead.
This happens because request body is always built with default empty tags object:
varrequestBody=[{"tags": {},
The fix is to get tags from options instead:
varrequestBody=[{"tags": options.tags,
The text was updated successfully, but these errors were encountered:
When I send json with custom tags, they are simply ignored and empty
tags
object is sent instead.This happens because request body is always built with default empty tags object:
The fix is to get tags from options instead:
The text was updated successfully, but these errors were encountered: