Add bookmarks as a reserved name

main
Bob Mottram 2021-03-20 10:16:06 +00:00
parent d2a32d0d60
commit b8fb58b2fb
1 changed files with 2 additions and 1 deletions

View File

@ -1358,7 +1358,8 @@ def _isReservedName(nickname: str) -> bool:
'accounts', 'channels', 'profile', 'u',
'updates', 'repeat', 'announce',
'shares', 'fonts', 'icons', 'avatars',
'welcome', 'helpimages')
'welcome', 'helpimages',
'bookmark', 'bookmarks', 'tlbookmarks')
if nickname in reservedNames:
return True
return False