From adbdb21e0d8dcfd702929f31a45be20c0e52c72d Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sat, 16 Oct 2021 01:48:20 +1100 Subject: [PATCH] Fix typo in voting booth when failing to load fingerprintjs2 --- eosweb/core/templates/election/view/booth.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eosweb/core/templates/election/view/booth.html b/eosweb/core/templates/election/view/booth.html index 4e9cee3..f15bec3 100644 --- a/eosweb/core/templates/election/view/booth.html +++ b/eosweb/core/templates/election/view/booth.html @@ -2,7 +2,7 @@ {# Eos - Verifiable elections - Copyright © 2017-2019 RunasSudo (Yingtong Li) + Copyright © 2017-2021 RunasSudo (Yingtong Li) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -72,7 +72,7 @@ // Verify booth if (should_do_fingerprint) { if (typeof Fingerprint2 === 'undefined') { - boothError('Your browser did not load fingerprintj2 correctly. Please try again after disabling your ad blockers and similar software. If the issue persists, try using a different browser.'); + boothError('Your browser did not load fingerprintjs2 correctly. Please try again after disabling your ad blockers and similar software. If the issue persists, try using a different browser.'); return; } }