diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs
index b501674..3bbe0c8 100644
--- a/24Hour/Controllers/Common/LawyerArchivesController.cs
+++ b/24Hour/Controllers/Common/LawyerArchivesController.cs
@@ -507,10 +507,10 @@ namespace _24Hour.Controllers.Common
///
///
[HttpGet]
- [HiddenApi]
[Route("EncodeData")]
- public Task> EncodeData(string str)
+ public Task> EncodeData()
{
+ var str = $"{_userdata.cardId},{_userdata.name}";
Result result = new();
result.result = Convert.ToBase64String(Encoding.UTF8.GetBytes(str));
result.IsSucceed = true;