diff --git a/db/feed.php b/db/feed.php index 987e1e674..95aa93819 100644 --- a/db/feed.php +++ b/db/feed.php @@ -120,8 +120,6 @@ public function toAPI() { 'added', 'folderId', 'unreadCount', - 'lastModified', - 'etag', 'link' ]); } diff --git a/tests/unit/db/FeedTest.php b/tests/unit/db/FeedTest.php index dd0c52da5..4a91acc2f 100644 --- a/tests/unit/db/FeedTest.php +++ b/tests/unit/db/FeedTest.php @@ -44,8 +44,6 @@ public function testToAPI() { 'added' => 123, 'folderId' => 1, 'unreadCount' => 321, - 'lastModified' => 44, - 'etag' => 45, 'link' => 'https://www.google.com/some/weird/path' ], $feed->toAPI()); }