Roland Tapken
Roland Tapken
Additionally, QtWebKit is available for PyQt5, too (however, I don't know if it has been marked as deprecated). I would suggest to use find_spec from importlib to validate the dependencies...
The easiest solution would be to move the import of QtWebEngine into the first line and only support QtWebKit for Qt4 and QtWebEngine for Qt5.
Might be a dup of #182 because I expire the same problem and it contains both errors: ``` 2022-06-21 13:57:39,626 DEBUG [ImapConnection-58040] davmail.exchange.auth.O365Authenticator - O365 returned error: 2022-06-21 13:57:39,629 INFO...
It seems that response property strServiceExceptionMessage is set but empty
Found two issues. First, O365Authenticator#handleMfa() returns null because of policy reasons, but the error message got only visible after I modified O365Authenticator to write processAuthMethod.getResponseBodyAsString() into the logger. The request...
Besides this, I think the problem is that I missed this line from the FAQ: "You will have to give your consent to DavMail access on first call, check davmail...
I have the same issue: @import within makes the browser end in and endless loop, never get back to the main thread (e.g. document.ready will never be called). This started...
More information: This fails: ```html @fontSize: 12px; @import url(/css/default/styles.less); @import url(/css/default/login.less); ``` But this works fine: ```html @fontSize: 12px; @import url(/css/default/styles.less); @import url(/css/default/login.less); ``` And this is working, too: ```html...
The issue also occurs if the page content is replaced by JavaScript and the new content contains another , but only if the new style element also contains variables AND...
To make it even worse it seems that the problem is also triggered when the second imported less file itself contains variable definitions.