Skip to content

Commit

Permalink
Merge pull request #274 from BendeguzTajti/fix/ArrayIndexOutOfBoundsE…
Browse files Browse the repository at this point in the history
…xception-crash

fix ArrayIndexOutOfBoundsException crash
  • Loading branch information
farmerbb authored Oct 17, 2023
2 parents 30c7984 + efaf6ea commit 4397133
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,7 @@ private void updateRecentApps(final boolean firstRefresh) {
try {
entries.remove(entries.size() - 1);
launcherAppCache.remove(launcherAppCache.size() - 1);
} catch (ArrayIndexOutOfBoundsException ignored) {}
} catch (IndexOutOfBoundsException ignored) {}
}

// Determine if we need to reverse the order again
Expand Down

0 comments on commit 4397133

Please sign in to comment.