diff --git a/.gitmodules b/.gitmodules index fcbb02c..d293745 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "MareAPI"] path = MareAPI - url = https://git.lop-sync.com/huggingway/LopAPI.git + url = https://git.drgn.rocks/t0w0bi/ClubPenguinApi diff --git a/MareSynchronosServer/MareSynchronosAuthService/Services/AccountRegistrationService.cs b/MareSynchronosServer/MareSynchronosAuthService/Services/AccountRegistrationService.cs index 846d1ea..97c3fc3 100644 --- a/MareSynchronosServer/MareSynchronosAuthService/Services/AccountRegistrationService.cs +++ b/MareSynchronosServer/MareSynchronosAuthService/Services/AccountRegistrationService.cs @@ -47,14 +47,14 @@ public class AccountRegistrationService public async Task RegisterAccountAsync(string ua, string ip, string hashedSecretKey) { - var reply = new RegisterReplyV2Dto(); + var reply = new RegisterReplyV2Dto(); - reply.ErrorMessage = "Sign up only available through discord."; - return reply; + reply.ErrorMessage = "Sign up only available through discord."; + return reply; - /* - - if (!_registrationUserAgentRegex.Match(ua).Success) + /* + REMINDER: Remove this later for my service! + if (!_registrationUserAgentRegex.Match(ua).Success) { reply.ErrorMessage = "User-Agent not allowed"; return reply;