[RELEASE] trakt.tv tv/movie scrobbler
(2013-04-07, 14:42)ezechiel1917 Wrote: using latest git and checkScrobblingExclusion is not working anymore.

Code:
12:30:00 T:2870983488  NOTICE: [trakt] checkScrobblingExclusion(): Checking exclusion settings for '/media/drive1/series/friends/season 1/friends.1x01.avi'.

I've set location /media/drive1/ as Excluded path, but trakt seems not to be detecting video is in this path and scrobbles it to the site.

Code:
<setting id="ExcludePath" value="/media/drive1/" />
<setting id="ExcludePathOption" value="true" />

EDIT:
looks like utilities.py (since https://github.com/nate1280/script.trakt...ccdb6b774e)

Code:
if not ExcludePath and getSettingAsBool('ExcludePathOption'):
isn't working

when changed to
Code:
if ExcludePath != "" and getSettingAsBool('ExcludePathOption'):
it works

etc.

Not sure how I missed that one.

Code:
if ExcludePath and getSettingAsBool('ExcludePathOption'):

Will work, not sure why I negated the test there.


Messages In This Thread
RE: [RELEASE] trakt.tv tv/movie scrobbler - by nate1280 - 2013-04-07, 15:25
Logout Mark Read Team Forum Stats Members Help
[RELEASE] trakt.tv tv/movie scrobbler13