From 8590598a782a0dd33136a72a6c8cf634f0835bfc Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 15 Jan 2024 10:16:57 +0100 Subject: [PATCH] Add missing playlists filterable attributes --- server/lib/indexers/playlist-indexer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/indexers/playlist-indexer.ts b/server/lib/indexers/playlist-indexer.ts index a91253c..4f6dddd 100644 --- a/server/lib/indexers/playlist-indexer.ts +++ b/server/lib/indexers/playlist-indexer.ts @@ -5,7 +5,7 @@ import { AbstractIndexer } from './shared' export class PlaylistIndexer extends AbstractIndexer { protected readonly primaryKey = 'uuid' - protected readonly filterableAttributes = [ 'uuid', 'host', 'videosLength' ] + protected readonly filterableAttributes = [ 'uuid', 'host', 'ownerAccount.handle', 'ownerAccount.host', 'videosLength' ] protected readonly sortableAttributes = SORTABLE_COLUMNS.PLAYLISTS_SEARCH // Keep the order, most important first protected readonly searchableAttributes = [ 'displayName', 'videoChannel.displayName', 'ownerAccount.displayName', 'description' ]