1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-09-27 18:36:56 +00:00

fix: Remove legacy check for u. prefix

This commit is contained in:
Ginger 2025-09-14 21:30:20 -04:00 committed by nex
parent 8e27d74c4a
commit a0b0ff9d5c

View file

@ -90,14 +90,6 @@ pub(crate) async fn set_profile_key_route(
)));
};
if body
.kv_pair
.keys()
.any(|key| key.starts_with("u.") && !profile_key_value.is_string())
{
return Err!(Request(BadJson("u.* profile key fields must be strings")));
}
if body.kv_pair.keys().any(|key| key.len() > 128) {
return Err!(Request(BadJson("Key names cannot be longer than 128 bytes")));
}