We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tabMainProtocolMap.get(...) is undefined
The extension frequently causes the following error to be displayed in the browser console:
20:13:31.782 can't access property "protocolVersion", tabMainProtocolMap.get(...) is undefined 2 background.js:54 loadSavedSecurityInfoAndUpdateIcon moz-extension://18647e97-ca2d-4bbb-979a-557087b95623/background.js:54 apply self-hosted:1870 applySafeWithoutClone resource://gre/modules/ExtensionCommon.jsm:614 fire resource://gre/modules/ExtensionChild.jsm:775 recvRunListener resource://gre/modules/ExtensionChild.jsm:779 recvRunListener self-hosted:844 _recv resource://gre/modules/ConduitsChild.jsm:78 receiveMessage resource://gre/modules/ConduitsChild.jsm:169 run resource://gre/modules/ConduitsChild.jsm:160 receiveMessage resource://gre/modules/ConduitsChild.jsm:161 map self-hosted:240 receiveMessage resource://gre/modules/ConduitsChild.jsm:161
This happens on Firefox Nightly with, among other things, fission enabled.
Most likely broken by ea5d372ef0d1620097457134fb6312c9d2f4cc91:
async function loadSavedSecurityInfoAndUpdateIcon(details) { - cached_version = tabMainProtocolMap.get(details.tabId); + cached_version = tabMainProtocolMap.get(details.tabId).protocolVersion; if (typeof cached_version !== "undefined" && cached_version !== "unknown") {
The text was updated successfully, but these errors were encountered:
Confirming this on Nightly.
Sorry, something went wrong.
Fix undefined protocolVersion error #45
5b016b6
Thank you for reporting this, I've just committed a change that should fix the problem.
No branches or pull requests
The extension frequently causes the following error to be displayed in the browser console:
This happens on Firefox Nightly with, among other things, fission enabled.
Most likely broken by ea5d372ef0d1620097457134fb6312c9d2f4cc91:
The text was updated successfully, but these errors were encountered: