diff --git a/application/Device/DeviceController.php b/application/Device/DeviceController.php index bb4155c99..f49e897af 100644 --- a/application/Device/DeviceController.php +++ b/application/Device/DeviceController.php @@ -18,8 +18,7 @@ class DeviceController extends mfBaseController $this->allowedPops = array_column(PopModel::getAll(), 'id'); } else { $networkIds = array_column($this->me->getProperty('my_networks'), 'id'); - $popIds = array_column(PopNetworkModel::search(['Networks' => $networkIds]), 'pop_id'); - $this->allowedPops = array_unique(array_merge([55], $popIds)); + $this->allowedPops = array_column(PopNetworkModel::search(['Networks' => $networkIds]), 'pop_id'); } }