Update submodules.

This commit is contained in:
2025-09-11 01:27:58 +01:00
parent 45365a885c
commit e8124b26f4
2 changed files with 7 additions and 7 deletions

2
.gitmodules vendored
View File

@@ -1,3 +1,3 @@
[submodule "MareAPI"]
path = MareAPI
url = https://git.lop-sync.com/huggingway/LopAPI.git
url = https://git.drgn.rocks/t0w0bi/ClubPenguinApi

View File

@@ -47,14 +47,14 @@ public class AccountRegistrationService
public async Task<RegisterReplyV2Dto> 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;