Ver código fonte

make playlist creation private by default (#12853)

dkanada 6 meses atrás
pai
commit
4c65e0d397

+ 1 - 1
MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

@@ -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;
 }