Skip to content

Commit 2bfad10

Browse files
committed
Reverse order of feeds being updated by id
See gpodder#1768
1 parent 56cc584 commit 2bfad10

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/gpodder/dbsqlite.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ def get_podcast_statistics(self, podcast_id=None):
150150
def load_podcasts(self, factory):
151151
logger.info('Loading podcasts')
152152

153-
sql = 'SELECT * FROM %s' % self.TABLE_PODCAST
153+
# See https://github.com/gpodder/gpodder/issues/1768 for why descending order
154+
sql = 'SELECT * FROM %s order by id desc' % self.TABLE_PODCAST
154155

155156
with self.lock:
156157
cur = self.cursor()

0 commit comments

Comments
 (0)