aboutsummaryrefslogtreecommitdiff
path: root/internal/reader/opml/parser.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/reader/opml/parser.go')
-rw-r--r--internal/reader/opml/parser.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/reader/opml/parser.go b/internal/reader/opml/parser.go
index 5e3fd0d2..09455a69 100644
--- a/internal/reader/opml/parser.go
+++ b/internal/reader/opml/parser.go
@@ -37,7 +37,7 @@ func getSubscriptionsFromOutlines(outlines opmlOutlineCollection, category strin
CategoryName: category,
})
} else if outline.Outlines.HasChildren() {
- subscriptions = append(subscriptions, getSubscriptionsFromOutlines(outline.Outlines, outline.Text)...)
+ subscriptions = append(subscriptions, getSubscriptionsFromOutlines(outline.Outlines, outline.GetTitle())...)
}
}
return subscriptions