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
When entering a soft_id in any of the functions, the soft_id gets overwritten by the value in the defaultPayload. This happens because the params object is being entered first, then the defaultPayload, which will overwrite the parameters from the params object:
...this.defaultPayload and ...params need to be swapped in all functions to fix this.
Also, for some reason, not all functions even support the soft_id parameter, e.g. the coordinates function doesn't because it isn't specified in the paramsCoordinates interface. Hope that you fix both of these issues
The text was updated successfully, but these errors were encountered:
When entering a
soft_id
in any of the functions, thesoft_id
gets overwritten by the value in thedefaultPayload
. This happens because theparams
object is being entered first, then thedefaultPayload
, which will overwrite the parameters from theparams
object:...this.defaultPayload
and...params
need to be swapped in all functions to fix this.Also, for some reason, not all functions even support the
soft_id
parameter, e.g. thecoordinates
function doesn't because it isn't specified in theparamsCoordinates
interface. Hope that you fix both of these issuesThe text was updated successfully, but these errors were encountered: