diff options
| -rw-r--r-- | background_scripts/completion.coffee | 2 | 
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 | 
