mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
feat(server): new option to set the default for ReportRealPath on new players
Implements #3653 Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
09ae41a2da
commit
74348a340f
2 changed files with 4 additions and 0 deletions
|
@ -62,6 +62,7 @@ type configOptions struct {
|
|||
IgnoredArticles string
|
||||
IndexGroups string
|
||||
SubsonicArtistParticipations bool
|
||||
DefaultReportRealPath bool
|
||||
FFmpegPath string
|
||||
MPVPath string
|
||||
MPVCmdTemplate string
|
||||
|
@ -447,6 +448,7 @@ func init() {
|
|||
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("subsonicartistparticipations", false)
|
||||
viper.SetDefault("defaultreportrealpath", false)
|
||||
viper.SetDefault("ffmpegpath", "")
|
||||
viper.SetDefault("mpvcmdtemplate", "mpv --audio-device=%d --no-audio-display --pause %f --input-ipc-server=%s")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue