From 05284760a775a04c1c59f5faed361ad56b7fc6a5 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 27 Jul 2025 03:32:28 +0800 Subject: [PATCH] :drunk: Update the stellar program tier error --- DysonNetwork.Drive/Storage/TusService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DysonNetwork.Drive/Storage/TusService.cs b/DysonNetwork.Drive/Storage/TusService.cs index 11537fc..37ae17e 100644 --- a/DysonNetwork.Drive/Storage/TusService.cs +++ b/DysonNetwork.Drive/Storage/TusService.cs @@ -73,7 +73,7 @@ public abstract class TusService { eventContext.FailRequest( HttpStatusCode.Forbidden, - $"You need to have join the Stellar Program tier {pool.PolicyConfig.RequirePrivilege} to use this pool" + $"You need to have join the Stellar Program to use this pool" ); return; } @@ -84,7 +84,7 @@ public abstract class TusService { eventContext.FailRequest( HttpStatusCode.Forbidden, - $"You need to have join the Stellar Program tier {pool.PolicyConfig.RequirePrivilege} to use this pool" + $"You need Stellar Program tier {pool.PolicyConfig.RequirePrivilege} to use this pool, you are tier {privilege}" ); return; }