From da245628e0f85e39467744cb4a7e5c86172ae022 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Fri, 13 Jun 2025 11:51:57 +0200 Subject: [PATCH] [plugin] NewsDownloader: fix getEmptyFeed() call (#13945) Accidentally changed in #13806. Closes #13933. --- plugins/newsdownloader.koplugin/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/newsdownloader.koplugin/main.lua b/plugins/newsdownloader.koplugin/main.lua index 3bc1ffaf7..99062edab 100644 --- a/plugins/newsdownloader.koplugin/main.lua +++ b/plugins/newsdownloader.koplugin/main.lua @@ -857,7 +857,7 @@ function NewsDownloader:viewFeedList() -- Prepare the view with all the callbacks for editing the attributes local feed_item_vc = FeedView:getItem( #feed_config + 1, - self.getEmptyFeed(), + getEmptyFeed(), function(id, edit_key, value) self:editFeedAttribute(id, edit_key, value) end @@ -1021,7 +1021,7 @@ function NewsDownloader:updateFeedConfig(id, key, value) if id > #feed_config then table.insert( feed_config, - self.getEmptyFeed() + getEmptyFeed() ) end