From f245b6b7faa29b4f276527daca48c305fe9689c1 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 17 Jun 2020 20:21:44 +0300 Subject: Update users.js etc with global search replace, to try to fix selecting correct user. Thanks to xet7 ! --- sandstorm.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sandstorm.js') diff --git a/sandstorm.js b/sandstorm.js index de386d14..34b1e507 100644 --- a/sandstorm.js +++ b/sandstorm.js @@ -175,7 +175,7 @@ if (isSandstorm && Meteor.isServer) { const users = {}; function ensureUserListed(userId) { if (!users[userId]) { - const user = Meteor.users.findOne(userId); + const user = Users.findOne(userId); if (user) { users[userId] = { id: user.services.sandstorm.id }; } else { @@ -217,7 +217,7 @@ if (isSandstorm && Meteor.isServer) { 'userId', ); (comment.text.match(/\B@([\w.]*)/g) || []).forEach(username => { - const user = Meteor.users.findOne({ + const user = Users.findOne({ username: username.slice(1), }); if (user && activeMembers.indexOf(user._id) !== -1) { @@ -368,7 +368,7 @@ if (isSandstorm && Meteor.isServer) { if (newMethods[key].auth) { newMethods[key].auth = function() { const sandstormID = this.req.headers['x-sandstorm-user-id']; - const user = Meteor.users.findOne({ + const user = Users.findOne({ 'services.sandstorm.id': sandstormID, }); return user && user._id; -- cgit v1.2.3-1-g7c22