diff --git a/src/privacy.js b/src/privacy.js index ed6652d..dff355f 100644 --- a/src/privacy.js +++ b/src/privacy.js @@ -44,18 +44,7 @@ export async function shouldCollectTelemetry(method) { * @return {boolean} */ export async function shouldUpdatePrices() { - if (await trackingProtectionEnabled()) { - return false; - } - - if (doNotTrackEnabled()) { - return false; - } - - if (await cookiesBlocked()) { - return false; - } - + // TODO (bdanforth): Add private browsing check per #177 return true; }