don't include the username when showing favs
This commit is contained in:
		@@ -30,7 +30,7 @@ export default {
 | 
				
			|||||||
        and items.active = 'true'
 | 
					        and items.active = 'true'
 | 
				
			||||||
        ${ tag ? db`and tags.normalized ilike '%' || slugify(${tag}) || '%'` : db`` }
 | 
					        ${ tag ? db`and tags.normalized ilike '%' || slugify(${tag}) || '%'` : db`` }
 | 
				
			||||||
        ${ o.fav ? db`and "user".user ilike ${'%'+user+'%'}` : db`` }
 | 
					        ${ o.fav ? db`and "user".user ilike ${'%'+user+'%'}` : db`` }
 | 
				
			||||||
        ${ user ? db`and items.username ilike ${'%'+user+'%'}` : db`` }
 | 
					        ${ !o.fav && user ? db`and items.username ilike ${'%'+user+'%'}` : db`` }
 | 
				
			||||||
        ${ mime ? db`and items.mime ilike ${smime}` : db`` }
 | 
					        ${ mime ? db`and items.mime ilike ${smime}` : db`` }
 | 
				
			||||||
        ${ !o.session ? db`and items.id not in (select item_id from tags_assign where item_id = items.id and (${db.unsafe(globalfilter)}))` : db`` }
 | 
					        ${ !o.session ? db`and items.id not in (select item_id from tags_assign where item_id = items.id and (${db.unsafe(globalfilter)}))` : db`` }
 | 
				
			||||||
      group by items.id, tags.tag
 | 
					      group by items.id, tags.tag
 | 
				
			||||||
@@ -64,7 +64,7 @@ export default {
 | 
				
			|||||||
        and items.active = 'true'
 | 
					        and items.active = 'true'
 | 
				
			||||||
        ${ tag ? db`and tags.normalized ilike '%' || slugify(${tag}) || '%'` : db`` }
 | 
					        ${ tag ? db`and tags.normalized ilike '%' || slugify(${tag}) || '%'` : db`` }
 | 
				
			||||||
        ${ o.fav ? db`and "user".user ilike ${'%'+user+'%'}` : db`` }
 | 
					        ${ o.fav ? db`and "user".user ilike ${'%'+user+'%'}` : db`` }
 | 
				
			||||||
        ${ user ? db`and items.username ilike ${'%'+user+'%'}` : db`` }
 | 
					        ${ !o.fav && user ? db`and items.username ilike ${'%'+user+'%'}` : db`` }
 | 
				
			||||||
        ${ mime ? db`and items.mime ilike ${smime}` : db`` }
 | 
					        ${ mime ? db`and items.mime ilike ${smime}` : db`` }
 | 
				
			||||||
        ${ !o.session ? db`and items.id not in (select item_id from tags_assign where item_id = items.id and (${db.unsafe(globalfilter)}))` : db`` }
 | 
					        ${ !o.session ? db`and items.id not in (select item_id from tags_assign where item_id = items.id and (${db.unsafe(globalfilter)}))` : db`` }
 | 
				
			||||||
      group by items.id, tags.tag, ta.tag_id
 | 
					      group by items.id, tags.tag, ta.tag_id
 | 
				
			||||||
@@ -126,7 +126,7 @@ export default {
 | 
				
			|||||||
        and items.active = 'true'
 | 
					        and items.active = 'true'
 | 
				
			||||||
        ${ tag ? db`and tags.normalized ilike '%' || slugify(${tag}) || '%'` : db`` }
 | 
					        ${ tag ? db`and tags.normalized ilike '%' || slugify(${tag}) || '%'` : db`` }
 | 
				
			||||||
        ${ o.fav ? db`and "user".user ilike ${'%'+user+'%'}` : db`` }
 | 
					        ${ o.fav ? db`and "user".user ilike ${'%'+user+'%'}` : db`` }
 | 
				
			||||||
        ${ user ? db`and items.username ilike ${'%'+user+'%'}` : db`` }
 | 
					        ${ !o.fav && user ? db`and items.username ilike ${'%'+user+'%'}` : db`` }
 | 
				
			||||||
        ${ mime ? db`and items.mime ilike ${smime}` : db`` }
 | 
					        ${ mime ? db`and items.mime ilike ${smime}` : db`` }
 | 
				
			||||||
        ${ !o.session ? db`and items.id not in (select item_id from tags_assign where item_id = items.id and (${db.unsafe(globalfilter)}))` : db`` }
 | 
					        ${ !o.session ? db`and items.id not in (select item_id from tags_assign where item_id = items.id and (${db.unsafe(globalfilter)}))` : db`` }
 | 
				
			||||||
      group by items.id, tags.tag, ta.tag_id
 | 
					      group by items.id, tags.tag, ta.tag_id
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user