소스 검색

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": ""}});