Bläddra i källkod

make playlist creation private by default (#12853)

dkanada 6 månader sedan
förälder
incheckning
4c65e0d397
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

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