This just came up when testing against a dev instance, which starts
off with 0 posts anywhere, of course.
if self.contents.source.updated(feeds_updated) {
self.contents.update_items(client);
self.ensure_enough_rendered();
+
+ // If someone's home feed was almost completely empty,
+ // then adding a new post at the bottom may in fact cause
+ // there to have been a rendering overshoot where there
+ // previously wasn't!
+ self.fix_overshoot_at_top();
}
}
}