wesmiler преди 2 месеца
родител
ревизия
3bbd7108a5
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      app/Services/Api/MeetingService.php

+ 1 - 1
app/Services/Api/MeetingService.php

@@ -103,7 +103,7 @@ class MeetingService extends BaseService
                     ->get();
             }
             $info['supervisors'] = $supervisors?$supervisors->toArray() :[];
-            $info['guest_count'] = count($info['stores'] + $info['supervisors']);
+            $info['guest_count'] = count($info['stores']) + count($info['supervisors']);
             RedisService::set($cacheKey, $info,   rand(5,10));
         }