make playlist creation private by default (#12853)

This commit is contained in:
dkanada 2024-11-18 00:13:01 +09:00 committed by GitHub
parent e8761044c2
commit 4c65e0d397
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,5 +38,5 @@ public class PlaylistCreationRequest
/// <summary>
/// Gets or sets a value indicating whether the playlist is public.
/// </summary>
public bool? Public { get; set; } = true;
public bool? Public { get; set; } = false;
}