mirror of https://gitlab.com/bashrc2/epicyon
Add bookmarks as a reserved name
parent
d2a32d0d60
commit
b8fb58b2fb
3
utils.py
3
utils.py
|
@ -1358,7 +1358,8 @@ def _isReservedName(nickname: str) -> bool:
|
||||||
'accounts', 'channels', 'profile', 'u',
|
'accounts', 'channels', 'profile', 'u',
|
||||||
'updates', 'repeat', 'announce',
|
'updates', 'repeat', 'announce',
|
||||||
'shares', 'fonts', 'icons', 'avatars',
|
'shares', 'fonts', 'icons', 'avatars',
|
||||||
'welcome', 'helpimages')
|
'welcome', 'helpimages',
|
||||||
|
'bookmark', 'bookmarks', 'tlbookmarks')
|
||||||
if nickname in reservedNames:
|
if nickname in reservedNames:
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in New Issue