mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
remove anonymous app id since not needed for analytics
This commit is contained in:
@@ -11,14 +11,6 @@ function initAppIdService() {
|
|||||||
makeAndGetAppId('appId');
|
makeAndGetAppId('appId');
|
||||||
};
|
};
|
||||||
|
|
||||||
AppIdService.prototype.getAnonymousAppId = function (callback) {
|
|
||||||
if (!callback || typeof callback !== 'function') {
|
|
||||||
throw 'callback function required';
|
|
||||||
}
|
|
||||||
|
|
||||||
makeAndGetAppId('anonymousAppId');
|
|
||||||
};
|
|
||||||
|
|
||||||
function makeAndGetAppId(key) {
|
function makeAndGetAppId(key) {
|
||||||
chrome.storage.local.get(key, function (obj) {
|
chrome.storage.local.get(key, function (obj) {
|
||||||
if (obj && obj[key]) {
|
if (obj && obj[key]) {
|
||||||
|
|||||||
Reference in New Issue
Block a user