Sfoglia il codice sorgente

VLCVideoPlaylistCategoryViewController: Use playlist model

Soomin Lee 7 anni fa
parent
commit
6971af0bd5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Sources/MediaCategories/MediaCategory.swift

+ 1 - 1
Sources/MediaCategories/MediaCategory.swift

@@ -32,7 +32,7 @@ class VLCShowEpisodeCategoryViewController: VLCMediaCategoryViewController {
 
 class VLCVideoPlaylistCategoryViewController: VLCMediaCategoryViewController {
     init(_ services: Services) {
-        let model = VideoModel(medialibrary: services.medialibraryManager)
+        let model = PlaylistModel(medialibrary: services.medialibraryManager)
         super.init(services: services, category: model)
         category.updateView = { [weak self] in
             self?.reloadData()