Fixed AS implementation

This commit is contained in:
Yoshi Askharoun
2022-06-09 19:21:34 -05:00
parent fcb87e1b50
commit b92de10fc0
2 changed files with 2 additions and 2 deletions
@@ -46,7 +46,7 @@ namespace OwlCore.AbstractStorage
public string FileExtension => File.Extension;
/// <inheritdoc/>
public string Id => FluentStore.SDK.Helpers.StorageHelper.GetFileId(File);
public string Id => Extensions.StringExtensions.HashMD5Fast(Path);
/// <inheritdoc/>
public IFileDataProperties Properties { get; set; }
@@ -41,7 +41,7 @@ namespace OwlCore.AbstractStorage
public string Path => Directory.FullName;
/// <inheritdoc/>
public string Id => FluentStore.SDK.Helpers.StorageHelper.GetFileId(Directory);
public string Id => Extensions.StringExtensions.HashMD5Fast(Path);
/// <inheritdoc/>
public Task<IEnumerable<IFileData>> GetFilesAsync()