From 78b5433dcdf0505243bc9cc1f20c4f56b54e7499 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Sat, 6 Oct 2018 12:38:04 +0200 Subject: [PATCH] Teach Sync history engine about TRANSITION_RELOAD visit type. --- services/sync/modules/engines/history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/sync/modules/engines/history.js b/services/sync/modules/engines/history.js index 7c8aabf831..e7f53766fa 100644 --- a/services/sync/modules/engines/history.js +++ b/services/sync/modules/engines/history.js @@ -281,7 +281,7 @@ HistoryStore.prototype = { } if (!visit.type || !(visit.type >= PlacesUtils.history.TRANSITION_LINK && - visit.type <= PlacesUtils.history.TRANSITION_FRAMED_LINK)) { + visit.type <= PlacesUtils.history.TRANSITION_RELOAD)) { this._log.warn("Encountered record with invalid visit type: " + visit.type); throw "Invalid visit type!";