🐛 Fix wrong counting usage

This commit is contained in:
2025-07-29 14:43:40 +08:00
parent 28f6893c68
commit 83059374e9
3 changed files with 5 additions and 4 deletions

View File

@@ -262,7 +262,7 @@ public abstract class TusService
{
eventContext.FailRequest(
HttpStatusCode.Forbidden,
$"File size {billableUnit} MiB is exceed than the user's quota {quota} MiB"
$"File size {billableUnit} MiB is exceeded the user's quota {quota} MiB"
);
rejected = true;
}