CrazyIter_Bin hace 4 años
padre
commit
139b13bdc7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      TEAMModelOS.SDK/DI/AzureStorage/AzureStorageBlobExtensions.cs

+ 1 - 1
TEAMModelOS.SDK/DI/AzureStorage/AzureStorageBlobExtensions.cs

@@ -28,7 +28,7 @@ namespace TEAMModelOS.SDK.DI
             long? size = 0;
             try
             {
-                await foreach (var item in client.GetBlobsAsync(BlobTraits.None, BlobStates.None, prefix))
+                await foreach (BlobItem item in client.GetBlobsAsync(BlobTraits.None, BlobStates.None, prefix))
                 {
                     size += item.Properties.ContentLength;
                 };