aboutsummaryrefslogtreecommitdiff
path: root/app/Services/ExportService.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-02-06 12:43:30 +0100
committerGravatar GitHub <noreply@github.com> 2021-02-06 12:43:30 +0100
commit4a87f34bcff6afe28e33692e40dcbfb1f663f75a (patch)
treef17fc44db9db6ad3397a4f46dbd4f4ceccb374ac /app/Services/ExportService.php
parent8edce0e2095a4e78599bfdd1b39fc778ec29c720 (diff)
API implement OPML import/export (#3424)
#fix https://github.com/FreshRSS/FreshRSS/issues/3421
Diffstat (limited to 'app/Services/ExportService.php')
-rw-r--r--app/Services/ExportService.php2
1 files changed, 1 insertions, 1 deletions
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();