wesmiler 2 mesi fa
parent
commit
3bbd7108a5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      app/Services/Api/MeetingService.php

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

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