瀏覽代碼

make playlist creation private by default (#12853)

dkanada 6 月之前
父節點
當前提交
4c65e0d397
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs

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

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