On 01/08/2013 10:08 AM, Nick Fennell wrote: > Hey Kevin/All. > > I've been trying with; > > return 0 unless $self->TransactionObj->Type eq "Set"; > return 0 unless $self->TransactionObj->Field eq "Queue"; > return 0 unless $self->TransactionObj->OldValue eq 'QueueName'; > > but not having much luck. > > Anyone able to advise further?
You need to return 1 at some point. The condition doesn't default to true.
