Skip to content
New issue

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

Browser console errors #28

Open
kocjs opened this issue Mar 31, 2022 · 1 comment
Open

Browser console errors #28

kocjs opened this issue Mar 31, 2022 · 1 comment

Comments

@kocjs
Copy link

kocjs commented Mar 31, 2022

I get a lot of browser console errors, is there anything to worry about?

Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist.
updatePopup moz-extension://0f491beb-69cf-43fc-b5db-a33864e59ed0/background.js:366

view-source:moz-extension://0f491beb-69cf-43fc-b5db-a33864e59ed0/background.js

function updatePopup() {
	chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
		//No active tab!
		if(tabs.length <= 0) return;

		let entry = tabMap[tabs[0].id];

		if(entry != null)
			chrome.runtime.sendMessage({
				action: "updateTabInfo",
				reason: entry.reason,
				target: entry.target,
				status: entry.status
			});
		else
			chrome.runtime.sendMessage({
				action: "updateTabInfo",
				reason: "DynamicHistory is still processing this page",
				status: false
			});
@null-dev
Copy link
Owner

It's fine, it's just the extension trying to update the information in the popup that appears when you click on the extension icon in the toolbar.

I will leave this issue open to remind me to hide those errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants