Fixing Azure features

This commit is contained in:
Sebastien Ros
2013-09-06 13:44:27 -07:00
parent df2f4f6f70
commit d1d51e6f92
5 changed files with 50 additions and 61 deletions
@@ -109,13 +109,7 @@ namespace Orchard.Azure.Services.FileSystems {
return path2;
}
var ch = path1[path1.Length - 1];
if (ch != '/') {
return (path1.TrimEnd('/') + '/' + path2.TrimStart('/'));
}
return (path1 + path2);
return (path1.TrimEnd('/') + '/' + path2.TrimStart('/'));
}
public IStorageFile GetFile(string path) {