diff options
Diffstat (limited to 'lib/MooseX/Net/API')
-rw-r--r-- | lib/MooseX/Net/API/Meta/Method.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MooseX/Net/API/Meta/Method.pm b/lib/MooseX/Net/API/Meta/Method.pm index d2c9ab1..8879e04 100644 --- a/lib/MooseX/Net/API/Meta/Method.pm +++ b/lib/MooseX/Net/API/Meta/Method.pm @@ -198,10 +198,10 @@ sub _build_path { $path =~ s/(?:\$|:)$match/$value/; } if ($max_iter > $i) { - $path =~ s/(?:\/?(?:$|:).*)$//; + $path =~ s/(?:\/((?:\$|\:).*))?$//; } } - $path =~ s/(?:\/?(?:$|:).*)$//; + $path =~ s/(?:\/((?:\$|\:).*))?$//; return $path; } |