소스 검색

fix rules

Tokumeikoi 5 년 전
부모
커밋
bb56b581be
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      app/Services/ServerService.php

+ 2 - 0
app/Services/ServerService.php

@@ -96,6 +96,7 @@ class ServerService
             $rules = json_decode($server->ruleSettings);
             // domain
             if (isset($rules->domain) && !empty($rules->domain)) {
+                $rules->domain = array_filter($rules->domain);
                 $domainObj = new \StdClass();
                 $domainObj->type = 'field';
                 $domainObj->domain = $rules->domain;
@@ -104,6 +105,7 @@ class ServerService
             }
             // protocol
             if (isset($rules->protocol) && !empty($rules->protocol)) {
+                $rules->protocol = array_filter($rules->protocol);
                 $protocolObj = new \StdClass();
                 $protocolObj->type = 'field';
                 $protocolObj->protocol = $rules->protocol;