From 020ffe5d810d3370a102d73cea295e670e071251 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 19 Feb 2020 21:59:04 +0100 Subject: [PATCH] Fix a bug where showgroup() would throw an exception instead of updating. --- carousel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carousel.js b/carousel.js index b4ac56e..00da45c 100644 --- a/carousel.js +++ b/carousel.js @@ -629,8 +629,8 @@ function showgroup(group_name) let teams = parse_teams_from_spreadsheet(response); let games = parse_games_from_spreadsheet(response, group_name, false); display_group_parsed(teams, games, group_name); + publish_group_rank(response, group_name); // Update the spreadsheet in the background. }); - publish_group_rank(group_name); // Update the spreadsheet in the background. } -- 2.39.2