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