소스 검색

fix title in playback view for Plex items

Tobias Conradi 9 년 전
부모
커밋
c5ffaa053e
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      SharedSources/ServerBrowsing/Plex/VLCNetworkServerBrowserPlex.m

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

@@ -205,7 +205,12 @@
     if (!_URL)
         return nil;
 
-    return [VLCMedia mediaWithURL:_URL];
+    VLCMedia *media =  [VLCMedia mediaWithURL:_URL];
+    NSString *title = self.name;
+    if (title.length) {
+        [media setMetadata:self.name forKey:VLCMetaInformationTitle];
+    }
+    return media;
 }
 
 - (id<VLCNetworkServerBrowser>)containerBrowser {