From 16f90cb23bb4ea2dd5114bee719d5bf4c4a20083 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 6 Apr 2024 02:33:09 +0300 Subject: [PATCH] fix missed path slash --- src/Address.php | 5 +++++ 1 file changed, 5 insertions(+) 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; }