You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# check if our favorite team (if defined) is associated with this stream
742
742
# or if no favorite team match, look for the home or national streams
743
743
#if (FAV_TEAM != 'None' and 'mediaFeedSubType' in item and item['mediaFeedSubType'] == getFavTeamId()) or (selected_content_id is None and 'mediaFeedType' in item and (item['mediaFeedType'] == 'HOME' or item['mediaFeedType'] == 'NATIONAL' )):
744
-
if (FAV_TEAM!='None'and ((item['homeAway'] =='home'andjson_source['dates'][0]['games'][0]['teams']['home']['team']['id'] ==getFavTeamId()) or (item['homeAway'] =='away'andjson_source['dates'][0]['games'][0]['teams']['away']['team']['id'] ==getFavTeamId()))) or (selected_content_idisNoneand (item['homeAway'] =='home'oritem['isNational'] ==True )):
744
+
if (FAV_TEAM!='None'and ((item['homeAway'] =='home'andstr(json_source['dates'][0]['games'][0]['teams']['home']['team']['id'])==str(getFavTeamId()))or (item['homeAway'] =='away'andstr(json_source['dates'][0]['games'][0]['teams']['away']['team']['id'])==str(getFavTeamId())))) or (selected_content_idisNoneand (item['homeAway'] =='home'oritem['isNational'] ==True )):
745
745
# prefer live streams (suspended games can have both a live and archived stream available)
0 commit comments