Sfoglia il codice sorgente

make playlist creation private by default (#12853)

dkanada 6 mesi fa
parent
commit
4c65e0d397
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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;
 }