Skip to content

Commit

Permalink
Merge pull request #19881 from wordpress-mobile/issue/19879-tag-posts…
Browse files Browse the repository at this point in the history
…-list-not-fetching-new-pages

[Reader] Fix tag posts list paging
  • Loading branch information
RenanLukas authored Jan 8, 2024
2 parents 7a4208b + abc64da commit f0a33fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ private static String getSortColumnForTag(ReaderTag tag) {
} else if (tag.isTagTopic() || tag.isBookmarked()) {
return "date_tagged";
} else {
return "date_published";
return "datetime(date_published)";
}
}

Expand Down

0 comments on commit f0a33fb

Please sign in to comment.