Trying to connect Umbrel to Alby

Hi I’ve trying for a while to get my umbrel connected to Alby and have checked my settings but keep getting this message:

Connection Error

Please review your connection details.

A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received

Delete invalid account and edit again

Any ideas?

This error message indicates that there was a problem with the communication between the listener and the message channel. The listener sent a response indicating that it was ready to receive a message, but the message channel closed before the listener was able to receive the message.

In most cases the reason is that you call chrome.runtime.sendMessage when the popup is not shown. The popup cannot receive messages if it’s not shown. You can suppress the error by using ‘()=>chrome.runtime.lastError’ instead of ‘function(response){}’ .

Another possible solution would be show the popup in a new window using chrome.windows.create or as a DOM element inside the web page.

thanks! i wonder if it could be due to tailscale running?