New option: SearchFullString, to match query strings anywhere in searchable fields, not only in word boundaries

Based on feedback from @orlea, in https://github.com/deluan/navidrome/issues/255#issuecomment-683427754
This commit is contained in:
Deluan 2020-08-30 13:08:10 -04:00
parent aae9d89e8c
commit 76e522710a
3 changed files with 21 additions and 12 deletions

View file

@ -28,6 +28,7 @@ type configOptions struct {
ImageCacheSize string
AutoImportPlaylists bool
SearchFullString bool
IgnoredArticles string
IndexGroups string
ProbeCommand string
@ -87,6 +88,7 @@ func init() {
viper.SetDefault("autoimportplaylists", true)
// Config options only valid for file/env configuration
viper.SetDefault("searchfullstring", false)
viper.SetDefault("ignoredarticles", "The El La Los Las Le Les Os As O A")
viper.SetDefault("indexgroups", "A B C D E F G H I J K L M N O P Q R S T U V W X-Z(XYZ) [Unknown]([)")
viper.SetDefault("probecommand", "ffmpeg %s -f ffmetadata")