fix: Fixing bug where IcdUriBuilder was not correctly appending paths

This commit is contained in:
Chris Cameron
2018-05-14 14:52:55 -04:00
parent e55c2f9474
commit b2c3ecb113
2 changed files with 20 additions and 15 deletions

View File

@@ -100,7 +100,8 @@ namespace ICD.Common.Utils
}
// Path
builder.Append('/');
if (string.IsNullOrEmpty(Path) || !Path.StartsWith("/"))
builder.Append('/');
builder.Append(Path);
// Query