Fixes for client - country codes

This commit is contained in:
David Bomba 2021-07-20 15:09:02 +10:00
parent aff6eb2701
commit 29006a2da0

View File

@ -116,7 +116,7 @@ class StoreClientRequest extends Request
$input['settings'] = $settings; $input['settings'] = $settings;
if (isset($input['country_code']) && strlen($input['country_code']) == 3) { if (isset($input['country_code'])) {
$input['country_id'] = $this->getCountryCode($input['country_code']); $input['country_id'] = $this->getCountryCode($input['country_code']);
} }