Browse Source

upnp: display folder albumArt if available

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Pierre SAGASPE 11 years ago
parent
commit
83044aa42a
1 changed files with 2 additions and 0 deletions
  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]];