Selaa lähdekoodia

20220901 fix insertData function

LuluFJ.Ho 2 vuotta sitten
vanhempi
commit
d60d3c3b33
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1
    1
      app/Http/Services/Web/SeminarSignUpService.php

+ 1
- 1
app/Http/Services/Web/SeminarSignUpService.php Näytä tiedosto

@@ -62,7 +62,7 @@ class SeminarSignUpService
62 62
             ->where('trackNo', '=', $trackNo)
63 63
             ->first();
64 64
         
65
-        if ($limit->trackLimit>$nowCount) {
65
+        if ($limit['trackLimit']>$nowCount) {
66 66
             return true;
67 67
         } else {
68 68
             return false;