fix(ui): don't hide Last.fm scrobble switch (#3561)

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan Quintão 2024-12-19 09:08:28 -05:00 committed by GitHub
parent 6c11649b06
commit 2d8507cfd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 52 additions and 38 deletions

View file

@ -78,9 +78,6 @@ func buildAuthPayload(user *model.User) map[string]interface{} {
if conf.Server.EnableGravatar && user.Email != "" {
payload["avatar"] = gravatar.Url(user.Email, 50)
}
if conf.Server.LastFM.Enabled {
payload["lastFMApiKey"] = conf.Server.LastFM.ApiKey
}
bytes := make([]byte, 3)
_, err := rand.Read(bytes)