We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c28c0e5 commit a50e0a2Copy full SHA for a50e0a2
core/api/mobile.api.php
@@ -598,7 +598,7 @@ function saveMenuFromAppV2($menu, $mobile)
598
$transmitions = $params['transmition'];
599
$errorCount = 0;
600
foreach ($transmitions as $transmition) {
601
- if ($transmition['event'] == 'geofence') {
+ if (isset($transmition['event']) && $transmition['event'] == 'geofence') {
602
log::add('mobile', 'debug', '| Transmition :' . json_encode($params['transmition']));
603
$geofence = $transmition['geofence'];
604
log::add('mobile', 'debug', '| Event > ' . json_encode($geofence));
0 commit comments