From 06b3061715b0d8d8cf1520bf0159a44bc4353de4 Mon Sep 17 00:00:00 2001 From: fkloft Date: Wed, 13 Aug 2014 12:50:49 +0200 Subject: [PATCH] fix small syntax error (doesn't throw, but doesn't work either) --- code/send_request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/send_request.js b/code/send_request.js index c313c8cb..767a1bb0 100644 --- a/code/send_request.js +++ b/code/send_request.js @@ -101,7 +101,7 @@ window.outOfDateUserPrompt = function() +'In this case, try clearing your cache, or waiting 15-30 minutes for the stale data to expire.

', buttons: { 'RELOAD': function() { - if (typeof android !== 'undefined' && android && android.reloadIITC()) { + if (typeof android !== 'undefined' && android && android.reloadIITC) { android.reloadIITC(); } else { window.location.reload();