diff --git a/README.md b/README.md index b17a5d6..0ca8372 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # UmbracoFileSystemProviders.Azure v2 -**This version is for Umbraco v8 only**. For the v1 package for **Umbraco v7** please visit the [main branch](https://github.com/umbraco-community/UmbracoFileSystemProviders.Azure) +**This version is for Umbraco v8 only**. For the v1 package for **Umbraco v7** please visit the [main branch](https://github.com/umbraco-community/UmbracoFileSystemProviders.Azure/tree/develop) ![Image Alt](build/assets/logo/azure-logo-256.png) diff --git a/appveyor.yml b/appveyor.yml index a7bcdfd..2aea761 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,7 +9,7 @@ configuration: Release environment: # Version Suffix - version_suffix: beta1 + version_suffix: beta2 install: - ps: .\build\appveyor-semver.ps1 diff --git a/src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs b/src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs index c10cc24..b5e2248 100644 --- a/src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs +++ b/src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs @@ -684,7 +684,8 @@ public Stream OpenFile(string path) return null; } - Stream stream = blockBlob.OpenRead(); + MemoryStream stream = new MemoryStream(); + blockBlob.DownloadToStream(stream); if (stream.CanSeek) {