mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
Fixed AS implementation
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user