Update users.js etc with global search replace, to try to fix selecting correct user.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2020-06-17 20:21:44 +03:00
parent ad87f9ff4e
commit f245b6b7fa
12 changed files with 26 additions and 26 deletions

View file

@ -10,7 +10,7 @@ Meteor.methods({
var userId = this.userId;
if (userId) {
var user = Meteor.users.findOne(userId);
var user = Users.findOne(userId);
var numServices = _.keys(user.services).length; // including "resume"
var unset = {};