aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--background_scripts/completion.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee
index 7cd47a00..66ad2e38 100644
--- a/background_scripts/completion.coffee
+++ b/background_scripts/completion.coffee
@@ -779,7 +779,7 @@ HistoryCache =
# correct "lastVisitTime". That's crucial for ranking Vomnibar suggestions.
onPageVisited: (newPage) ->
i = HistoryCache.binarySearch(newPage, @history, @compareHistoryByUrl)
- pageWasFound = (@history[i].url == newPage.url)
+ pageWasFound = (@history[i]?.url == newPage.url)
if pageWasFound
@history[i] = newPage
else