浏览代码

Fixed issue where no one could like/dislike/chat/do anything on the site... Woops.

KrisVos130 9 年之前
父节点
当前提交
9579b2ad99
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/server/server.js

+ 1 - 1
app/server/server.js

@@ -424,7 +424,7 @@ function isAdmin() {
 
 function isBanned() {
     var userData = Meteor.users.findOne(Meteor.userId());
-    if (Meteor.userId() && userData !== undefined && userData.punishments.ban !== undefined) {
+    if (Meteor.userId() && userData !== undefined && userData.punishments !== undefined && userData.punishments.ban !== undefined) {
         var ban = userData.punishments.ban;
         if (new Date(ban.bannedUntil).getTime() <= new Date().getTime()) {
             Meteor.users.update(Meteor.userId(), {$unset: {"punishments.ban": ""}});