diff --git a/src/Address.php b/src/Address.php index f7567f2..f8b7e71 100644 --- a/src/Address.php +++ b/src/Address.php @@ -247,6 +247,11 @@ class Address if ($path = $this->getPath()) { + if (!str_starts_with($path, $this->getSeparator())) + { + $address .= $this->getSeparator(); + } + $address .= $path; }