"docs/vscode:/vscode.git/clone" did not exist on "76152d40a6210e66d09e53498e799794bda747d5"
Commit 78565e55 authored by Danny Liu's avatar Danny Liu
Browse files

notify user with toast.info() + update toast message

parent 7081755e
......@@ -151,8 +151,8 @@
if (canvasPixelTest()) {
profileImageUrl = generateInitialsImage(name);
} else {
toast.error(
$i18n.t('Canvas pixel test failed: fingerprint evasion likely. Disable fingerprint evasion and try again!'),
toast.info(
$i18n.t('Fingerprint spoofing detected: default profile picture set. Disable to access initial gravatar!'),
{
autoClose: 1000 * 10
}
......
......@@ -44,8 +44,8 @@
);
if (!canvasPixelTest()) {
toast.error(
$i18n.t('Canvas pixel test failed: fingerprint evasion likely. Using default avatar image.'),
toast.info(
$i18n.t('Fingerprint spoofing detected: default profile picture set. Disable to access initial gravatar!'),
{
position: "bottom-center",
autoClose: 1000 * 10,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment