Преглед изворни кода

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