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
Unfortunately, I recently updated to 1.4.3 and changes to the account package caused connectwith to break, throwing this error:
Uncaught TypeError: Cannot read property 'Facebook' of undefined at Object.Meteor.connectWith (mondora_connect-with.js?hash=767472b…:75)
Which refers to the following line within the Meteor.connectWith function:
var Service = typeof service === "string" ? Package[service][makePascalCased(service)] : service; // 39
I managed to bypass the issue by passing the Facebook object , that is available on the client as it seems to be loaded on the first line of accounts facebook source code
Hi, thanks for this package!
Unfortunately, I recently updated to 1.4.3 and changes to the account package caused connectwith to break, throwing this error:
Uncaught TypeError: Cannot read property 'Facebook' of undefined at Object.Meteor.connectWith (mondora_connect-with.js?hash=767472b…:75)
Which refers to the following line within the Meteor.connectWith function:
var Service = typeof service === "string" ? Package[service][makePascalCased(service)] : service; // 39
I managed to bypass the issue by passing the
Facebook object
, that is available on the client as it seems to be loaded on the first line of accounts facebook source codeHope this helps fix the package or anyone encountering a similar issue.
Dan
The text was updated successfully, but these errors were encountered: