소스 검색

make photos downloadable

Luke Pulverenti 9 년 전
부모
커밋
232d0eb14c
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      MediaBrowser.Controller/Entities/Photo.cs

+ 5 - 0
MediaBrowser.Controller/Entities/Photo.cs

@@ -53,6 +53,11 @@ namespace MediaBrowser.Controller.Entities
             }
         }
 
+        public override bool CanDownload()
+        {
+            return true;
+        }
+
         public int? Width { get; set; }
         public int? Height { get; set; }
         public string CameraMake { get; set; }