Skip to content

Commit

Permalink
Fix checking for changes since previous visit
Browse files Browse the repository at this point in the history
I broke that during refactoring.

Change-Id: I8b5609a7f5631f9bc0e8c927f0d703632feff30e
  • Loading branch information
jwbth committed Jun 2, 2024
1 parent 6a6bdaa commit bc4b342
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/updateChecker.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,8 +661,8 @@ const updateChecker = {
.on('process', (currentPageData) => {
const bootProcess = controller.getBootProcess();
this.setup(
currentPageData.length >= 1 ?
Number(currentPageData[currentPageData.length - 1]) :
currentPageData.length >= 2 ?
Number(currentPageData[currentPageData.length - 2]) :
undefined,
(
(
Expand Down

0 comments on commit bc4b342

Please sign in to comment.