Getting closer. Also should answer your issue ZeroByDivide. I have been having some luck using the "?" Ternary operator. expression ? "if true or exists" : "if not true or does not exist" see: http://groovy-lang.org/operators.html Thus we can filter out episodes more than 5 days old and specials by ...
Is there a way to limit the time frame for future episodes? any{ age < 5}{true} returns all future episodes. With timeStamp I could filter down to only episodes in the next few days. Specifically, some episodes hit my machine before midnight in my timezone and thus show as technically not having ...