Skip to content

Commit

Permalink
Merge branch 'develop-umbraco-version-8' into master-umbraco-version-8
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeavon committed Feb 19, 2020
2 parents 9906799 + adff24d commit 474433f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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)

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -9,7 +9,7 @@ configuration: Release

environment:
# Version Suffix
version_suffix: beta1
version_suffix: beta2

install:
- ps: .\build\appveyor-semver.ps1
Expand Down
3 changes: 2 additions & 1 deletion src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs
Expand Up @@ -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)
{
Expand Down

0 comments on commit 474433f

Please sign in to comment.