Same here. Curiously, if I send things to My Flow from the PC, they show up on the device, but the device asks me to connect if I try to send things from there.
Best posts made by nkrishnaswami
-
RE: Opera signing out of browser and flowOpera for Windows
-
RE: Version shown in pagesOpera for Windows
@acerswap Looks like it's from
- DNA-99524 Update method for displaying version of active browserjs
The correspondingbrowser.jschange looks like
'DNA-99524': { description: 'Browser.js version reported on FAQ page', isMatching: () => browserjsUrl, applyOnDOMReady: true, apply: () => { const browserjs_info = version(); const addVersion = createTextNode(`Today ${browserjs_info}`); document.body.appendChild(addVersion); }, },and it looks like the
isMatchingis always truthy, so should maybe need to be something likeisMatching: () => href === browserjsUrl.href,instead.
- DNA-99524 Update method for displaying version of active browserjs