浏览代码

fix thumbnails for Plex

Tobias Conradi 9 年之前
父节点
当前提交
838767b46c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      SharedSources/ServerBrowsing/Plex/VLCNetworkServerBrowserPlex.m

+ 1 - 1
SharedSources/ServerBrowsing/Plex/VLCNetworkServerBrowserPlex.m

@@ -173,7 +173,7 @@
         if (thumbPath) {
             thumbPath = [VLCPlexWebAPI urlAuth:thumbPath authentification:auth];
         }
-        _thumbnailURL = thumbPath.length ? [baseURL URLByAppendingPathComponent:thumbPath] : nil;
+        _thumbnailURL = thumbPath.length ? [NSURL URLWithString:thumbPath] : nil;
 
 
         _duration = dictionary[@"duration"];