Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
Former Member
3 years ago[USO] Button detection aborting due to timeout.
Hi,
I notice this error when 1password is active, and the button on the taskbar is clicked
[USO] Button detection aborting due to timeout.
When I disable the addon, this error is no longer pre...
francislavoie
2 years agoOccasional Contributor
I'm also seeing these in my app's logs. Unfortunately I can't provide access to the app to replicate it because of privacy reasons.
Here's what triggers it though. When a modal window is opened (div overlaid on the entire screen) it shows the log. I see the log is coming from injected.js
, specifically calling console.info('[USO] Button detection aborting due to timeout.');
Putting a breakpoint on this and triggering it shows the stack trace, it's from the focusin
event registered with document.body.addEventListener('focusin', this.handleDomEvent)
, which calls findUsoProviders
, which calls a minified function named Ha
, which has a huge if
statement with an e.forEach
and inside that if
body is the console.info
.
As others have said, console.info
should not be used here. Use console.debug
instead. Or better, only print logs like this if some option is selected in 1Password extension settings.