From a68c8d02c631ed03110c74d8694d36b8cb456a90 Mon Sep 17 00:00:00 2001 From: Tim Worrall Date: Mon, 14 Jul 2014 11:41:33 -0400 Subject: [PATCH] VIVO-699: increased retry count to ensure faculty data is retrieved. --- productMods/js/homePageUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/productMods/js/homePageUtils.js b/productMods/js/homePageUtils.js index e209d47f..e159ed8f 100644 --- a/productMods/js/homePageUtils.js +++ b/productMods/js/homePageUtils.js @@ -55,7 +55,7 @@ $(document).ready(function(){ $.getJSON(url, function(results) { if ( results == null || results.individuals.length == 0 ) { - if ( retryCount < 3 ) { + if ( retryCount < 5 ) { retryCount = retryCount + 1; getFacultyMembers(); }