Mark helper function as unexported

This commit is contained in:
Deluan
2020-05-01 09:17:21 -04:00
parent 9b817edd1a
commit dbde5330bd
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ func yearFilter(field string, value interface{}) Sqlizer {
}
func artistFilter(field string, value interface{}) Sqlizer {
return Exists("media_file", And{
return exists("media_file", And{
ConcatExpr("album_id=album.id"),
Or{
Eq{"artist_id": value},