Shady Nagy
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Infrastructure/Services/WebFileSystem.cs
|
|
|
@ -24,7 +24,7 @@ namespace Microsoft.eShopWeb.Infrastructure.Services |
|
|
|
|
|
|
|
public async Task<bool> SavePicture(string pictureName, string pictureBase64) |
|
|
|
{ |
|
|
|
if (!await UploadFile(pictureName, Convert.FromBase64String(pictureBase64))) |
|
|
|
if (string.IsNullOrEmpty(pictureBase64) || !await UploadFile(pictureName, Convert.FromBase64String(pictureBase64))) |
|
|
|
{ |
|
|
|
return false; |
|
|
|
} |
|
|
|
|