Simon Kern
Simon Kern
This bit me as well, I ended up deleting the folder and moved on :p
@pierreozoux's solution looks quite similar to flannel's official wireguard extension: https://github.com/coreos/flannel/blob/master/dist/extension-wireguard In the docs, it says about the `PreStartupCommand` which includes the key generation command: > Command to run before...
confirmed - I got the same warning, after following the instructions in the documentation.
Login also breaks if you happen to do any sort of request in between login and two-factor-authentication, e.g., pulling latest news for a sidebar widget via ajax etc. Therefore, I...
Any chance of getting this or what @sabipu mentioned merged?
I can redproduce this issue on my installation
@roddajohn Any chance you are running sth similar to #113? In case there is a second request that also gets redirected to the setup 2fa page, it might overwrite the...
That happens most likely due to the AutoField which can be customized since Django 3.2, see: https://docs.djangoproject.com/en/4.0/releases/3.2/ https://docs.djangoproject.com/en/4.0/ref/settings/#std:setting-DEFAULT_AUTO_FIELD Have set the default to BigAutoField in your settings? If you specify...
The linked PR could also solve your issue. Could you try it?
```if (brand.match(/opera|chrome|edge|safari|firefox|msie|trident/i) !== null)``` This condition can never be true for the string "Chromium", which is why it should fallback to userAgent anyway. Are you sure the function returns "Chromium"...