Skip to content

Commit 474433f

Browse files
committed
Merge branch 'develop-umbraco-version-8' into master-umbraco-version-8
2 parents 9906799 + adff24d commit 474433f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# UmbracoFileSystemProviders.Azure v2
22

3-
**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)
3+
**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)
44

55
![Image Alt](build/assets/logo/azure-logo-256.png)
66

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ configuration: Release
99

1010
environment:
1111
# Version Suffix
12-
version_suffix: beta1
12+
version_suffix: beta2
1313

1414
install:
1515
- ps: .\build\appveyor-semver.ps1

src/UmbracoFileSystemProviders.Azure/AzureFileSystem.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,8 @@ public Stream OpenFile(string path)
684684
return null;
685685
}
686686

687-
Stream stream = blockBlob.OpenRead();
687+
MemoryStream stream = new MemoryStream();
688+
blockBlob.DownloadToStream(stream);
688689

689690
if (stream.CanSeek)
690691
{

0 commit comments

Comments
 (0)