diff --git a/src/forwarders.js b/src/forwarders.js index 2847020bf..d0aeed12b 100644 --- a/src/forwarders.js +++ b/src/forwarders.js @@ -25,15 +25,6 @@ export default function Forwarders(mpInstance, kitBlocker) { !mpInstance._Store.webviewBridgeEnabled && mpInstance._Store.configuredForwarders ) { - // Some js libraries require that they be loaded first, or last, etc - mpInstance._Store.configuredForwarders.sort(function(x, y) { - x.settings.PriorityValue = x.settings.PriorityValue || 0; - y.settings.PriorityValue = y.settings.PriorityValue || 0; - return ( - -1 * (x.settings.PriorityValue - y.settings.PriorityValue) - ); - }); - mpInstance._Store.activeForwarders = mpInstance._Store.configuredForwarders.filter( function(forwarder) { if ( diff --git a/test/src/config/utils.js b/test/src/config/utils.js index d94ee8e84..8ad2aadfb 100644 --- a/test/src/config/utils.js +++ b/test/src/config/utils.js @@ -405,7 +405,7 @@ var pluses = /\+/g, }; this.settings = { - PriorityValue: 1, + }; this.setOptOut = function() {