fix: changed time to timestamp (#2217)
This commit is contained in:
parent
ce562fa3ea
commit
63c4792e70
1 changed files with 2 additions and 2 deletions
|
|
@ -130,7 +130,7 @@ class IssueViewSet(BaseViewSet):
|
|||
current_instance=json.dumps(
|
||||
IssueSerializer(current_instance).data, cls=DjangoJSONEncoder
|
||||
),
|
||||
epoch = int(timezone.now().time())
|
||||
epoch = int(timezone.now().timestamp())
|
||||
)
|
||||
|
||||
return super().perform_update(serializer)
|
||||
|
|
@ -2412,7 +2412,7 @@ class IssueDraftViewSet(BaseViewSet):
|
|||
current_instance=json.dumps(
|
||||
IssueSerializer(current_instance).data, cls=DjangoJSONEncoder
|
||||
),
|
||||
epoch = int(timezone.now().time())
|
||||
epoch = int(timezone.now().timestamp())
|
||||
)
|
||||
|
||||
return super().perform_update(serializer)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue