Fixed typo in IPV6 alphabet

According to python3 base64.b85decode module https://github.com/python/cpython/blob/3.8/Lib/base64.py
This commit is contained in:
fjh1997 2019-11-24 22:03:37 +08:00 committed by d98762625
parent 8e07ce90df
commit ff01dff1fc

View file

@ -20,7 +20,7 @@ export const ALPHABET_OPTIONS = [
},
{
name: "IPv6",
value: "0-9A-Za-z!#$%&()*+\\-;<=>?@^_`{|~}",
value: "0-9A-Za-z!#$%&()*+\\-;<=>?@^_`{|}~",
}
];