Browse Source

fix thumbnails for Plex

Tobias Conradi 9 years ago
parent
commit
838767b46c
1 changed files with 1 additions and 1 deletions
  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"];