mirror of
https://github.com/RoboSats/robosats.git
synced 2025-09-08 03:44:05 +00:00
Typo
This commit is contained in:
@ -758,7 +758,7 @@ class NotificationsView(ListAPIView):
|
|||||||
if not created_at:
|
if not created_at:
|
||||||
return HttpResponseBadRequest("Invalid date format")
|
return HttpResponseBadRequest("Invalid date format")
|
||||||
|
|
||||||
queryset = Order.objects.filter(created_at__gte=created_at)
|
queryset = queryset.filter(created_at__gte=created_at)
|
||||||
|
|
||||||
notification_data = []
|
notification_data = []
|
||||||
for notification in queryset:
|
for notification in queryset:
|
||||||
|
Reference in New Issue
Block a user