Explorar el Código

upnp: display folder albumArt if available

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Pierre SAGASPE hace 11 años
padre
commit
83044aa42a
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      Sources/VLCLocalServerFolderListViewController.m

+ 2 - 0
Sources/VLCLocalServerFolderListViewController.m

@@ -234,6 +234,8 @@
             cell.delegate = self;
         } else {
             [cell setIsDirectory:YES];
+            if (item.albumArt != nil)
+                [cell setIconURL:[NSURL URLWithString:item.albumArt]];
             [cell setIcon:[UIImage imageNamed:@"folder"]];
         }
         [cell setTitle:[item title]];