Skip to content

Commit

Permalink
... same fix in the GUI app, too
Browse files Browse the repository at this point in the history
  • Loading branch information
phfaist committed Jul 30, 2021
1 parent e9ec938 commit cec1140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/bibolamazi_gui/githubauthenticationdialog.py
Expand Up @@ -110,4 +110,4 @@ def _update_gui_state(self):

def _is_valid_token(self, token):
logger.debug("checking token = [...]%s", token[-4:])
return (re.match(r'^[a-fA-F0-9]{32,}$', token if token else '') is not None)
return (re.match(r'^[a-zA-Z0-9.+_/!@*=-]{32,}$', token if token else '') is not None)

0 comments on commit cec1140

Please sign in to comment.