-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
AssertionError #27
Comments
Could you please attach a link to a repo with a reproduction? No one else has reported this issue. |
We're having the same problem, I believe it's related to analytics-node, the APIs for their client and server APIs are different. On server it expects an object with the analytics.track({
userId: '019mr8mf4r',
event: 'Purchased an Item',
properties: {
revenue: 39.95,
shippingMethod: '2-day'
}
}); vs analytics.track('Signed Up', {
plan: 'Startup',
source: 'Analytics Academy'
}); |
I got the same issue. @billyvg your answer is correct. Tracking on the server has a slightly different API. The docs should mention this. |
Yep. |
I have the same issue, can you tell me how did you solve it? |
The problem is also present with the How about the package exposes a method that would then use |
I'm still getting this error when using the |
Using
Meteor 1.1.0.2
and package1.2.2_1
As soon as I attached a simple
analytics.page()
call toRouter.autoRun
every request triggers anAssertionError
.The text was updated successfully, but these errors were encountered: