Skip to content

Commit 4157395

Browse files
committed
change default values
1 parent 9aa70c3 commit 4157395

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sample.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ YOUTUBE_API_KEY=
2626
# YTDLP_PATH=
2727
# Keywords to ignore on videos downloaded by youtube (separated by only commas)
2828
# FILTER_LIST="live,remix,instrumental"
29-
# Library in Jellyfin/Plex to use (optional, leave empty to create a new library based on DOWNLOAD_DIR)
29+
# Library in Emby/Jellyfin/Plex to use (optional, leave empty to create a new library based on DOWNLOAD_DIR)
3030
# PS! When defining a pre-made library make sure that it doesn't overwrite file metadata.
3131
# LIBRARY_NAME=
3232
# Define a custom filename sepatator for special characters

src/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type Config struct {
2222
Listenbrainz Listenbrainz
2323
Creds Credentials
2424
URL string `env:"SYSTEM_URL"`
25-
Sleep int `env:"SLEEP" env-default:"1"`
25+
Sleep int `env:"SLEEP" env-default:"2"`
2626
PlaylistDir string `env:"PLAYLIST_DIR"`
2727
Persist bool `env:"PERSIST" env-default:"true"`
2828
System string `env:"EXPLO_SYSTEM"`
@@ -70,7 +70,7 @@ type Youtube struct {
7070
type Listenbrainz struct {
7171
Discovery string `env:"LISTENBRAINZ_DISCOVERY" env-default:"playlist"`
7272
User string `env:"LISTENBRAINZ_USER"`
73-
SingleArtist bool `env:"SINGLE_ARTIST" env-default:"false"`
73+
SingleArtist bool `env:"SINGLE_ARTIST" env-default:"true"`
7474
}
7575

7676
type Song struct {

0 commit comments

Comments
 (0)