From 4a87f34bcff6afe28e33692e40dcbfb1f663f75a Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 6 Feb 2021 12:43:30 +0100 Subject: API implement OPML import/export (#3424) #fix https://github.com/FreshRSS/FreshRSS/issues/3421 --- app/Services/ExportService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Services/ExportService.php') diff --git a/app/Services/ExportService.php b/app/Services/ExportService.php index 38f896324..78ef45c4e 100644 --- a/app/Services/ExportService.php +++ b/app/Services/ExportService.php @@ -27,7 +27,7 @@ class FreshRSS_Export_Service { public function __construct($username) { $this->username = $username; - $this->category_dao = new FreshRSS_CategoryDAO($username); + $this->category_dao = FreshRSS_Factory::createCategoryDao($username); $this->feed_dao = FreshRSS_Factory::createFeedDao($username); $this->entry_dao = FreshRSS_Factory::createEntryDao($username); $this->tag_dao = FreshRSS_Factory::createTagDao(); -- cgit v1.2.3