Skip to content

Commit

Permalink
Merge pull request #65 from bobrippling/fix-deviceinfo
Browse files Browse the repository at this point in the history
Ensure device info is handled despite setTime() `await`s
  • Loading branch information
gfwilliams authored Aug 15, 2024
2 parents 294690a + 48759f3 commit 4f07b72
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,8 @@ function getInstalledApps(refresh) {
console.log("SETTINGS.settime=true and >2 seconds out - updating time");
return Comms.setTime();
}
})
.then(() => {
// Show device info in more page:
const deviceInfoElem = document.getElementById("more-deviceinfo");
if (deviceInfoElem) {
Expand Down

0 comments on commit 4f07b72

Please sign in to comment.