1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-06-24 10:27:47 +02:00

change settings description and console warning

This commit is contained in:
Harvey Tindall 2021-01-09 21:19:33 +00:00 committed by Harvey Tindall
parent d9e1e2f58b
commit f5602f1e96
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@
"emby"
],
"value": "jellyfin",
"description": "Media server type."
"description": "Note: Emby integration works, but is not much of a priority. Jellyfin branding will still appear accross jfa-go."
}
}
},

View File

@ -452,7 +452,7 @@ func start(asDaemon, firstCall bool) {
serverType = mediabrowser.EmbyServer
timeoutHandler = common.NewTimeoutHandler("Emby", server, true)
app.info.Println("Using Emby server type")
fmt.Println(aurora.Yellow("WARNING: Emby compatibility is experimental, things may not work."))
fmt.Println(aurora.Yellow("WARNING: Emby compatibility is experimental, and support is limited.\nSee the jfa-go wiki for more info."))
} else {
app.info.Println("Using Jellyfin server type")
}