Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #83 from rrpproxy/vatid
Browse files Browse the repository at this point in the history
fix(vat): fix getting VAT ID in domain status
  • Loading branch information
h9k authored Mar 31, 2022
2 parents 5b8a010 + 74b2290 commit d48585b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ private function setRegistrantVatId(): void
}
foreach ($names as $prop) {
if (!empty($this->api->properties[$prop])) {
$this->vatId = $this->api->properties[$prop];
$this->vatId = $this->api->properties[$prop][0];
}
}
$this->vatId = null;
Expand Down

0 comments on commit d48585b

Please sign in to comment.