浏览代码

Fix InvalidOperationException when serializing MediaPathInfo

Bond_009 3 年之前
父节点
当前提交
b458f85c47
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      MediaBrowser.Model/Configuration/MediaPathInfo.cs

+ 6 - 0
MediaBrowser.Model/Configuration/MediaPathInfo.cs

@@ -9,6 +9,12 @@ namespace MediaBrowser.Model.Configuration
             Path = path;
         }
 
+        // Needed for xml serialization
+        public MediaPathInfo()
+        {
+            Path = string.Empty;
+        }
+
         public string Path { get; set; }
 
         public string? NetworkPath { get; set; }