Stefan Brand
Stefan Brand
Is that the reason loading of the comments fails for this PR: https://github.com/WeAreFairphone/fprsmap/pull/25 ? Or should I open a new issue?
I'm on the latest release from F-Droid (1.2.3), running Android 4.4.2. Which version included the workaround? Am 21. September 2016 19:07:02 MESZ, schrieb "Jon Ander Peñalba" [email protected]: > @StefanBrand Are...
OK thank you for the clarification! :) Am 21. September 2016 23:02:25 MESZ, schrieb "Jon Ander Peñalba" [email protected]: > The workaround was added in 1.2.4 that was released a few...
I could track it down to one use of `django_cte.CTEQuerySet` in a custom queryset: ``` from django_cte import CTEQuerySet class CustomQuerySet(CTEQuerySet): ... ``` If I replace the `CTEQuerySet` back to...
Tracking the issue down further, `CustomManager = models.Manager.from_queryset(CustomQuerySet)` seems to be a problem. ``` from django.db import models from django_cte import CTEQuerySet class CustomQuerySet(CTEQuerySet): ... CustomManager = models.Manager.from_queryset(CustomQuerySet) class MyModel(models.Model):...
I would like to add one aspect to the discussion: Before finding this issue I was not aware that authoring highlights actually existed. https://demo.hedgedoc.org does not require login, so the...
Workaround is documented here: https://github.com/openwisp/django-rest-framework-gis/issues/250#issuecomment-868471330
Try this (using `GeometrySerializerMethodField`): ```python class InSituCommentSerializer(GeoFeatureModelSerializer): geometry_4326 = GeometrySerializerMethodField() def get_geometry_4326(self, state) -> Polygon: return state.geom.transform(4326, clone=True) class Meta: model = Instance geo_field = "geometry_4326" fields = ("name", )...
Maybe this helps: https://pypi.org/project/types-python-dateutil/
Haha, this is embarrassing. Now I can't swipe it away in any state (regardless of it being paused or running). Why should it possible to swipe it away when paused?...