begin work on adding search to albums page

This commit is contained in:
Drew Weymouth
2022-12-27 09:50:51 -08:00
parent d04a586cd6
commit fc858e1024
5 changed files with 180 additions and 12 deletions
+4 -3
View File
@@ -146,9 +146,10 @@ type searchIter struct {
func (l *LibraryManager) newSearchIter(query string) *searchIter {
return &searchIter{
query: query,
l: l,
s: l.s.Server,
query: query,
l: l,
s: l.s.Server,
albumIDset: make(map[string]bool),
}
}