mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-17 13:45:05 +00:00
fix: Fixing bug where IcdUriBuilder was not correctly appending paths
This commit is contained in:
@@ -100,7 +100,8 @@ namespace ICD.Common.Utils
|
||||
}
|
||||
|
||||
// Path
|
||||
builder.Append('/');
|
||||
if (string.IsNullOrEmpty(Path) || !Path.StartsWith("/"))
|
||||
builder.Append('/');
|
||||
builder.Append(Path);
|
||||
|
||||
// Query
|
||||
|
||||
Reference in New Issue
Block a user