소스 검색

Make sure item has a place to store local meta before trying to store there

Eric Reed 12 년 전
부모
커밋
6ebab4a965
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      MediaBrowser.Server.Implementations/Providers/ProviderManager.cs

+ 1 - 1
MediaBrowser.Server.Implementations/Providers/ProviderManager.cs

@@ -368,7 +368,7 @@ namespace MediaBrowser.Server.Implementations.Providers
             }
 
             //download and save locally
-            var localPath = ConfigurationManager.Configuration.SaveLocalMeta ?
+            var localPath = (ConfigurationManager.Configuration.SaveLocalMeta && item.MetaLocation != null) ?
                 Path.Combine(item.MetaLocation, targetName) :
                 _remoteImageCache.GetResourcePath(item.GetType().FullName + item.Path.ToLower(), targetName);