From 72fe638ff71a988803ebaaf8500f9f8812c2b943 Mon Sep 17 00:00:00 2001 From: Dan Mills Date: Fri, 10 Apr 2009 16:08:31 -0700 Subject: [PATCH] Remove __proto__.__proto__ it's fail-prone --- 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 96c321c560ba..a2fc5fc811e0 100644 --- a/services/sync/modules/engines/history.js +++ b/services/sync/modules/engines/history.js @@ -492,7 +492,7 @@ HistoryTracker.prototype = { }, _init: function HT__init() { - this.__proto__.__proto__._init.call(this); + Tracker._init.call(this); this._hsvc.addObserver(this, false); },