Преглед на файлове

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