vladikoff / meteor-accounts-persona

Login service for Mozilla Persona accounts
MIT License
19 stars 6 forks source link

Callback function never called #3

Closed orefalo closed 11 years ago

orefalo commented 11 years ago

Hi,

It appears as if the callback is not being called.

            Meteor.loginWithPersona(function (error) {
                console.log("calledback");
                if (error) {
                    alert(error.message);
                }
            });

With the code above, "calledback" never show in the console.

I also tried

Meteor.loginWithPersona({}, function (error) {
                console.log("calledback"); });

Thank you

vladikoff commented 11 years ago

Fixed in 0.1.1. I think you need to run mrt update to get the latest version.

Thanks for reporting this issue!