Skip to content

Commit b63c4d6

Browse files
committed
v0.12.2: fix menu Next stuck on connecting
1 parent 19a7354 commit b63c4d6

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v0.12.2] - 2026-03-29
6+
7+
### Fixed
8+
- **Menu → Next no longer gets stuck on "Connecting..."** - Opening the menu and tapping Next was cancelling the WiFi connectivity wait mid-fetch.
9+
10+
---
11+
512
## [v0.12.1] - 2026-03-29
613

714
### Fixed

src/com/bpmct/trmnl_nook_simple_touch/DisplayActivity.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,11 @@ protected void onPause() {
573573
refreshHandler.removeCallbacks(pendingWifiWarmupRunnable);
574574
pendingWifiWarmupRunnable = null;
575575
}
576-
cancelConnectivityWait();
576+
// Only cancel connectivity wait if no fetch is in progress — otherwise
577+
// a menu dismiss (onPause/onResume) would kill a "Connecting..." wait mid-fetch.
578+
if (!fetchInProgress) {
579+
cancelConnectivityWait();
580+
}
577581
}
578582

579583
@Override

0 commit comments

Comments
 (0)