parsav  Diff

Differences From Artifact [0fea8fa8b6]:

To Artifact [ac2cb76c4f]:


   226    226   		from parsav_rels as r
   227    227   			left  join ntimes as nt on nt.uid = r.relatee
   228    228   		where
   229    229   			r.since >= coalesce(nt.when,0) and
   230    230   			r.kind = <rel:follow>
   231    231   	), allnotices as (table acts union table replies union table follows)
   232    232   
   233         -	table allnotices order by (notice).when desc
          233  +	select * from allnotices where rcpt <> (notice).who
          234  +	order by (notice).when desc
   234    235   );
   235    236