From 4dbedecc1e56ec09e51a5149c13c92c1f60ade03 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Sun, 25 Jan 2015 21:54:40 +0000 Subject: [PATCH] Fix history loading if receiver.json says history:0 --- public_html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/script.js b/public_html/script.js index 4f79091..0c2edc5 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -214,7 +214,7 @@ function start_load_history() { console.log("Starting to load history (" + PositionHistorySize + " items)"); load_history_item(0); } else { - endLoadHistory(); + end_load_history(); } }