From 1561008dd422bdab150dc1e2f36b6de8bc4c9deb Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Tue, 27 Mar 2018 16:21:36 -0600 Subject: [PATCH] Fix bug with account pairing key display, close #13 --- www/views/accounts.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/views/accounts.html b/www/views/accounts.html index 0ddcfd9..effff50 100644 --- a/www/views/accounts.html +++ b/www/views/accounts.html @@ -33,7 +33,7 @@ for (var j = 0; j < synckey.length - 6; j++) { stars += "*"; } - synckey = $('
').html(key.slice(0, 3) + stars + key.slice(-3)).html(); + synckey = $('
').html(synckey.slice(0, 3) + stars + synckey.slice(-3)).html(); $("#accountlist").append("
" + "" + "
" + username + "
"