diff --git a/src/screens/game/GameInterface.js b/src/screens/game/GameInterface.js index 35908a8..b80b1a2 100644 --- a/src/screens/game/GameInterface.js +++ b/src/screens/game/GameInterface.js @@ -462,6 +462,12 @@ export class GameScreen extends ActiveGameScreen { } while (true); postIndex = nextPostIndex; + + // Preemptively submit the post we will scroll past. + const postToSubmit = postIndex - 1; + if (postToSubmit >= 0) { + this.onPostScrolledOffScreen(postToSubmit); + } } // Get the post to scroll it into view.