From 044c4d0e6e27d9877482278a4bf4941bb4c42665 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Wed, 13 Feb 2019 13:53:03 +1100 Subject: [PATCH] fix missing bracket --- share/static/js/receive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/static/js/receive.js b/share/static/js/receive.js index ed4d87e0..f247b4e4 100644 --- a/share/static/js/receive.js +++ b/share/static/js/receive.js @@ -31,7 +31,7 @@ form.onsubmit = function(event) { xhr.onload = function() { if (xhr.status == 200) { uploadButton.innerHTML = 'Send Files'; - if (document.getElementByClassName('flashes') !=null) + if (document.getElementByClassName('flashes') !=null) { var flashes = document.getElementByClassName('flashes') } }