From d1525691f47d68d06f2a5eb09029fcc5caa7ec1c Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sun, 11 Jun 2023 09:58:12 -0400 Subject: [PATCH] Remove unimportant information from troubleshooting information This was added back then for the purpose of investigating the following issue: https://github.com/uBlockOrigin/uBlock-issues/issues/2604 No longer needed. --- src/js/messaging.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/js/messaging.js b/src/js/messaging.js index d1326006f..d060d84dc 100644 --- a/src/js/messaging.js +++ b/src/js/messaging.js @@ -1496,8 +1496,6 @@ const getSupportData = async function() { removedListset = undefined; } - const { versionUpdateTime = 0 } = await vAPI.storage.get('versionUpdateTime'); - let browserFamily = (( ) => { if ( vAPI.webextFlavor.soup.has('firefox') ) { return 'Firefox'; } if ( vAPI.webextFlavor.soup.has('chromium') ) { return 'Chromium'; } @@ -1508,9 +1506,7 @@ const getSupportData = async function() { } return { - [`${vAPI.app.name} ${vAPI.app.version}`]: { - since: formatDelayFromNow(versionUpdateTime), - }, + [`${vAPI.app.name}`]: `${vAPI.app.version}`, [`${browserFamily}`]: `${vAPI.webextFlavor.major}`, 'filterset (summary)': { network: staticNetFilteringEngine.getFilterCount(),