Skip to content

Commit e741385

Browse files
committed
Allow , in username to support multiple users
Fixes #1329
1 parent 693a189 commit e741385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/timeline.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ proc createTimelineRouter*(cfg: Config) =
114114
get "/@name/?@tab?/?":
115115
cond '.' notin @"name"
116116
cond @"name" notin ["pic", "gif", "video", "search", "settings", "login", "intent", "i"]
117-
cond @"name".allCharsInSet({'a'..'z', 'A'..'Z', '0'..'9', '_'})
117+
cond @"name".allCharsInSet({'a'..'z', 'A'..'Z', '0'..'9', '_', ","})
118118
cond @"tab" in ["with_replies", "media", "search", ""]
119119
let
120120
prefs = cookiePrefs()

0 commit comments

Comments
 (0)