summaryrefslogtreecommitdiffstats
path: root/lib/Utility
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Utility')
-rw-r--r--lib/Utility/OPMLExporter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Utility/OPMLExporter.php b/lib/Utility/OPMLExporter.php
index 880222da0..aa06f5dbf 100644
--- a/lib/Utility/OPMLExporter.php
+++ b/lib/Utility/OPMLExporter.php
@@ -69,7 +69,7 @@ class OPMLExporter
// feeds without folders
foreach ($feeds as $feed) {
- if ($feed->getFolderId() === 0) {
+ if ($feed->getFolderId() === null) {
$feedOutline = $this->createFeedOutline($feed, $document);
$body->appendChild($feedOutline);
}