diff options
-rw-r--r-- | player.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -350,7 +350,7 @@ def get_data(args, token): passwd=y["passwd"] if not passwd.isalnum(): raise Exception("Illegal password") - if len(passwd) != 12: + if len(passwd) not in [12, 16]: raise Exception("Illegal password") vs=str(y["version"]) except: |