diff --git a/main_controller.py b/main_controller.py index 78b78ae..0904c7b 100644 --- a/main_controller.py +++ b/main_controller.py @@ -32,7 +32,6 @@ def update_loop(): for game_time in game_times: this_game, state, discrim_string = master_games_dic[game_time] test_string = this_game.gamestate_display_full() - print(discrim_string) state["leagueoruser"] = discrim_string state["display_inning"] = this_game.inning #games need to be initialized with the following keys in state: #is_league, bool diff --git a/static/loader.js b/static/loader.js index 5b68f62..b723104 100644 --- a/static/loader.js +++ b/static/loader.js @@ -15,7 +15,7 @@ $(document).ready(function (){ //get all leagues leagues = [] for (var key in json) { - if (json[key].is_league) { + if (json[key].is_league && !leagues.includes(json[key].leagueoruser)) { leagues.push(json[key].leagueoruser) } }