Browse Source

fix missed path slash

main 1.3.1
yggverse 2 months ago
parent
commit
16f90cb23b
  1. 5
      src/Address.php

5
src/Address.php

@ -247,6 +247,11 @@ class Address @@ -247,6 +247,11 @@ class Address
if ($path = $this->getPath())
{
if (!str_starts_with($path, $this->getSeparator()))
{
$address .= $this->getSeparator();
}
$address .= $path;
}

Loading…
Cancel
Save