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