mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 10:54:50 +08:00
Fixing folder names resolution in Azure
--HG-- branch : dev
This commit is contained in:
@@ -29,7 +29,7 @@ namespace Orchard.Azure {
|
|||||||
_storageAccount = storageAccount;
|
_storageAccount = storageAccount;
|
||||||
ContainerName = containerName;
|
ContainerName = containerName;
|
||||||
_root = String.IsNullOrEmpty(root) ? "": root + "/";
|
_root = String.IsNullOrEmpty(root) ? "": root + "/";
|
||||||
_absoluteRoot = _storageAccount.BlobEndpoint.AbsoluteUri + "/" + containerName + "/" + root;
|
_absoluteRoot = Combine(Combine(_storageAccount.BlobEndpoint.AbsoluteUri, containerName), root);
|
||||||
|
|
||||||
using ( new HttpContextWeaver() ) {
|
using ( new HttpContextWeaver() ) {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user