def getTraktAddonEpisodeInfo(): try: scrobble = sctop.addon('script.trakt').getSetting('scrobble_episode') except: scrobble = '' try: ExcludeHTTP = sctop.addon('script.trakt').getSetting('ExcludeHTTP') except: ExcludeHTTP = '' try: authorization = sctop.addon('script.trakt').getSetting('authorization') except: authorization = '' if scrobble == 'true' and ExcludeHTTP == 'false' and not authorization == '': return True else: return False