Results 37 comments of ippei

The problem is not just IndexedDB, but localStorage as well (already reported as #185, but was closed as duplicate of this). I suspect WebSQL as well. Is there any workaround?...

AbstractRefreshToken.revoke as well.

This seems to work for now. (just specify the patched OAuth2Validator class as OAUTH2_VALIDATOR_CLASS) ```Py from django.db import transaction from oauth2_provider.models import AbstractRefreshToken from oauth2_provider.oauth2_validators import OAuth2Validator as orig_OAuth2Validator from...

Thanks! I’ll give it a go when I have a time. Any idea how it should be done by the way? I could add a config to the settings, but...

Time ran out after a bit of desk research; theoretically this looks like how it should be done: - with a model ```Py from django.db import transaction, router with transaction.atomic(using=router.db_for_write(model)):...

It is possible that having `pycryptodome` in setup.py requirements is causing the problem. see #152 Good chance the `Crypto` you are looking at is not that of `pycrypto` as normally...

@brodybits Thank you for following up. To me, it is a strange situation. `source-file` is meant for specifying source code files, such as .java for android. But specifying a directory...

> > Keeping and documenting is probably "easier" here > > In that case I think we should fix it for Android as well. @brodybits Should I file a bug...

fixes https://github.com/logisticinfotech/ionic4-datepicker/issues/53 ?

My current workaround: ```TS function startSuppressingIonAppScroll(): () => void { const ionAppEl = document.querySelector('ion-app'); if (ionAppEl == null) { return; } let forceScrolling = false; const scrollListener = (ev: Event)...