wesmiler 1 year ago
parent
commit
10ebcef989
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Services/Api/MemberAddressService.php

+ 1 - 1
app/Services/Api/MemberAddressService.php

@@ -166,7 +166,7 @@ class MemberAddressService extends BaseService
                 $address[] = $info['street'];
             }
 
-            $info['address_text'] = $address? implode(' ', $address) : '';
+            $info['address_text'] = $address? implode('', $address) : '';
             RedisService::set($cacheKey, $info, rand(5, 10));
         }