Procházet zdrojové kódy

Allow StaticFileHandler Path to be changed

LukePulverenti Luke Pulverenti luke pulverenti před 13 roky
rodič
revize
692d9dc331

+ 10 - 0
MediaBrowser.Common/Net/Handlers/StaticFileHandler.cs

@@ -10,12 +10,22 @@ namespace MediaBrowser.Common.Net.Handlers
 {
     public class StaticFileHandler : BaseHandler
     {
+        private string _Path;
         public virtual string Path
         {
             get
             {
+                if (!string.IsNullOrWhiteSpace(_Path))
+                {
+                    return _Path;
+                }
+
                 return QueryString["path"];
             }
+            set
+            {
+                _Path = value;
+            }
         }
 
         private bool FileStreamDiscovered = false;