Replies: 1 comment
-
|
@teeliny this is a confirmed bug in the it was fixed in PR #14562 (merged jan 18) and shipped in v2.13.0. upgrading to the corrected code now looks like: async identify(data) {
if ("group" in data) {
this.client_.groupIdentify({ ... });
} else if (data.actor_id) {
this.client_.identify({ ... });
} else {
throw new Error("Actor or group is required...");
}
}the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Investigation
After checking the implementation, I noticed that the
identifymethod is always throwing the error, regardless of whetheractor_idorgroupis provided.Current Implementation
Beta Was this translation helpful? Give feedback.
All reactions