Bluesky app fork with some witchin' additions 💫

make handles lowercase (#8233)

authored by samuel.fm and committed by

GitHub 118d385b 54e5ea0a

+1 -1
+1 -1
src/lib/strings/handles.ts
··· 28 28 export function sanitizeHandle(handle: string, prefix = ''): string { 29 29 return isInvalidHandle(handle) 30 30 ? '⚠Invalid Handle' 31 - : forceLTR(`${prefix}${handle}`) 31 + : forceLTR(`${prefix}${handle.toLocaleLowerCase()}`) 32 32 } 33 33 34 34 export interface IsValidHandle {