From f86b511ecbe0b62a9f50dee6df2dc4b18297aad9 Mon Sep 17 00:00:00 2001 From: Soomin Lee Date: Fri, 24 Aug 2018 17:23:03 +0200 Subject: [PATCH] VLCAudioPlaylistCategoryViewController: Use PlaylistModel (closes #294) --- Sources/MediaCategories/MediaCategory.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/MediaCategories/MediaCategory.swift b/Sources/MediaCategories/MediaCategory.swift index eb20a6e9..0930637f 100644 --- a/Sources/MediaCategories/MediaCategory.swift +++ b/Sources/MediaCategories/MediaCategory.swift @@ -82,7 +82,7 @@ class VLCAlbumCategoryViewController: VLCMediaCategoryViewController { class VLCAudioPlaylistCategoryViewController: 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() -- GitLab