Fix error where certain history data entries would not show up

This commit is contained in:
Kuba Orlik 2021-12-18 16:47:29 +01:00
parent 7a801211a4
commit 60422461fd
1 changed files with 0 additions and 2 deletions

View File

@ -85,8 +85,6 @@ export class RequestCluster extends EventEmitter {
if (
array[index].getValuePreview() ===
array[index - 1].getValuePreview() ||
(array[index].classification === "history" &&
array[index - 1].classification === "history") || // if they're both history, then the first one is the longest
isSameURL(array[index].value, array[index - 1].value)
) {
return false;