small optimization
This commit is contained in:
parent
f95b53db08
commit
64fa523e3d
@ -389,9 +389,8 @@ Meteor.methods({
|
|||||||
_id: workobject.class
|
_id: workobject.class
|
||||||
});
|
});
|
||||||
var user = Meteor.userId();
|
var user = Meteor.userId();
|
||||||
var foundsubs = currentclass.subscribers;
|
|
||||||
if (typeof comment === "string" && comment.length <= 200 &&
|
if (typeof comment === "string" && comment.length <= 200 &&
|
||||||
_.contains(foundsubs, Meteor.userId()) &&
|
_.contains(currentclass.subscribers, Meteor.userId()) &&
|
||||||
!_.contains(currentclass.banned, Meteor.userId())) {
|
!_.contains(currentclass.banned, Meteor.userId())) {
|
||||||
var commentInfo = {
|
var commentInfo = {
|
||||||
"comment": input[0],
|
"comment": input[0],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user