This commit is contained in:
jjohnstondev 2023-01-08 18:47:11 -08:00
parent 6e542a030f
commit 8a248999a0
1 changed files with 2 additions and 1 deletions

View File

@ -468,7 +468,8 @@ func GetRadioPlaylist(ctx *gctx.Context, client *spotify.Client) (*spotify.FullP
}
return playlist, nil
}
playlist, err := client.CreatePlaylistForUser(ctx, ctx.UserId, "gosptRADIO", "This is an automanaged playlist for the custom radio of gospt", false, false)
// private flag doesnt work
playlist, err := client.CreatePlaylistForUser(ctx, ctx.UserId, "Radio", "Automanaged radio playlist", false, false)
if err != nil {
return nil, err
}