Closed cloverharvest closed 8 years ago
._id (returns an Error: _id is null) in
Line 15: this.party.owner = Meteor.user( )._id
this.party.owner = Meteor.user( )._id
change to correct method Meteor.userId( ) :
Meteor.userId( )
Line 15: this.party.owner = Meteor.userId( )
this.party.owner = Meteor.userId( )
Closing this.
Meteor.user()._id causes an error in Step 8.7.
Meteor.user()._id
Step 8.7
But Step 9 will show Meteor.user()._id is needed to pass the test and thus reveals itself as the right code.
Step 9
._id (returns an Error: _id is null) in
Line 15:
this.party.owner = Meteor.user( )._id
change to correct method
Meteor.userId( )
:Line 15:
this.party.owner = Meteor.userId( )