INTERACT FORUM

More => Old Versions => Media Center 11 (Development Ended) => Topic started by: risingdamp on June 13, 2005, 09:52:57 am

Title: Bug with modifiers in view scheme rule?
Post by: risingdamp on June 13, 2005, 09:52:57 am
I have this rule in a view scheme:
Code: [Select]
-[MD5TextHash]=[] ~dup=[MD5TextHash] [Duplicate]=[]
I always thought that modifiers (like dup) were executed in order in a VS rule.  This means that the 'dup' modifier should be executed first.  I'm expecting the above to find all tracks where there are duplicated MD5TextHash values and then from that list remove any where my custom field called duplicate is not blank.  However, it appears to be executing the ~dup modifier after removing files where Duplicate=blank.

Is this a bug?
Title: Re: Bug with modifiers in view scheme rule?
Post by: Matt on June 13, 2005, 11:41:16 am
Post-processors (things that start with a ~) are executed after search tokens. (in the order they appear in the string)
Title: Re: Bug with modifiers in view scheme rule?
Post by: risingdamp on June 13, 2005, 02:21:50 pm
Thanks.  That explains it.  I guess I'll just have to include [Duplicate] as an item in the scheme and then select 'unassigned' each time.  Unless there's another way?