remove streamer-specific branding

This commit is contained in:
2026-07-21 19:47:21 -07:00
parent 716c6f3f2f
commit 7eb9d00a50
5 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ function RecoveryCodes({ codes, onContinue }: { codes: string[]; onContinue: ()
const url = URL.createObjectURL(blob)
const anchor = document.createElement('a')
anchor.href = url
anchor.download = 'luoxingci-recovery-codes.txt'
anchor.download = 'live-component-recovery-codes.txt'
anchor.click()
URL.revokeObjectURL(url)
}
+2 -2
View File
@@ -1971,8 +1971,8 @@ mod tests {
#[test]
fn username_and_room_validation_are_canonical() {
assert_eq!(
normalize_username(" LuoXingCi ").expect("username"),
("LuoXingCi".into(), "luoxingci".into())
normalize_username(" ExampleStreamer ").expect("username"),
("ExampleStreamer".into(), "examplestreamer".into())
);
assert!(normalize_username("ab").is_err());
assert!(normalize_username("bad name").is_err());