Skip to content

Commit

Permalink
Quota: fixed a deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayRechkin committed Nov 25, 2024
1 parent 3c2fb91 commit 41db9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/ASC.Data.Storage/S3/S3Storage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ public override async Task DeleteDirectoryAsync(string domain, string path)
}
public override async Task DeleteDirectoryAsync(string domain, string path, Guid ownerId)
{
await DeleteFilesAsync(domain, path, "*", true);
await DeleteFilesAsync(domain, path, "*", true, ownerId);
}

public override async Task<long> GetFileSizeAsync(string domain, string path)
Expand Down

0 comments on commit 41db9b3

Please sign in to comment.