INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: bug with smartlist?  (Read 717 times)

lise

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 942
bug with smartlist?
« on: February 07, 2012, 06:40:19 pm »

I have a view scheme called Not Seen, for movies or tv shows that we have not watched yet (obviously).

My library includes a "Flag" custom delimited list which includes the value "Seen it"

My rule is as follows:

([Last Played]=>5y or -[Flag]="Seen it")

Last Seen is not in the last 5 years
Flag does not contain "Seen it" (I've also tried the Flag IS NOT "seen it" with the same result".

I keep getting files that I've watched 2 days ago. The file tags definitely show the files as having been seen:

Last Played: 2/5/2012 10:35 pm and the other shows Last Played 2/6/2012 10:28pm
Logged
A wise man once said don't count your years, but make your years count. Or was it beers?

MrC

  • Citizen of the Universe
  • *****
  • Posts: 10462
  • Your life is short. Give me your money.
Re: bug with smartlist?
« Reply #1 on: February 07, 2012, 07:02:05 pm »

I think you want AND.

A Seen it list would be:

  Last played < 5 years
OR
  flag is "Seen it"

Negate that to a Not Seen it list:
  Last played >= 5 years
AND
  flag is not "Seen it"

This falls from:

  a or b  negated is !(a or b), which is the same as !a AND !b.

  [Last Played]=>5y -[Flag]=[Seen it]
Logged
The opinions I express represent my own folly.

lise

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 942
Re: bug with smartlist?
« Reply #2 on: February 07, 2012, 07:18:02 pm »

You are correct. It worked. Thanks.
Logged
A wise man once said don't count your years, but make your years count. Or was it beers?
Pages: [1]   Go Up