summary refs log tree commit diff
path: root/src/api
diff options
context:
space:
mode:
authorroot <root@nomchy-verse.com>2025-03-23 16:33:24 -0700
committerroot <root@nomchy-verse.com>2025-03-23 16:33:24 -0700
commitb03888fd6271eac98e5b32b5afb8fe9deb4ded1e (patch)
tree930d3e31ead50ee1e604227426d020db1becea0c /src/api
parentFixed errors in authorization for webhooks with tokens (diff)
parentMerge pull request #1217 from SupremeMortal/fix/message-ack (diff)
downloadserver-ts-b03888fd6271eac98e5b32b5afb8fe9deb4ded1e.tar.xz
Merge branch 'master' of https://github.com/spacebarchat/server into update_webhooks
Diffstat (limited to 'src/api')
-rw-r--r--src/api/Server.ts7
-rw-r--r--src/api/routes/users/@me/index.ts5
2 files changed, 8 insertions, 4 deletions
diff --git a/src/api/Server.ts b/src/api/Server.ts

index b4274969..0e4030de 100644 --- a/src/api/Server.ts +++ b/src/api/Server.ts
@@ -1,17 +1,17 @@ /* Spacebar: A FOSS re-implementation and extension of the Discord.com backend. Copyright (C) 2023 Spacebar and Spacebar Contributors - + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ @@ -98,6 +98,7 @@ export class SpacebarServer extends Server { } this.app.set("json replacer", JSONReplacer); + this.app.disable("x-powered-by"); const trustedProxies = Config.get().security.trustedProxies; if (trustedProxies) this.app.set("trust proxy", trustedProxies); diff --git a/src/api/routes/users/@me/index.ts b/src/api/routes/users/@me/index.ts
index 9cd8bfda..3e7b9caa 100644 --- a/src/api/routes/users/@me/index.ts +++ b/src/api/routes/users/@me/index.ts
@@ -152,7 +152,10 @@ router.patch( } const { maxUsername } = Config.get().limits.user; - if (check_username.length > maxUsername) { + if ( + check_username.length > maxUsername || + check_username.length < 2 + ) { throw FieldErrors({ username: { code: "BASE_TYPE_BAD_LENGTH",