clean format comments date string

This commit is contained in:
simon 2022-11-14 11:59:59 +07:00
parent fb046bed5b
commit 79d134cea8
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 7 additions and 1 deletions

View File

@ -74,7 +74,13 @@ class Comments:
def clean_comment(self, comment):
"""parse metadata from comment for indexing"""
time_text_datetime = datetime.utcfromtimestamp(comment["timestamp"])
time_text = time_text_datetime.strftime("%Y-%m-%d %H:%M:%S")
if time_text_datetime.hour == 0 and time_text_datetime.minute == 0:
format_string = "%Y-%m-%d"
else:
format_string = "%Y-%m-%d %H:%M"
time_text = time_text_datetime.strftime(format_string)
cleaned_comment = {
"comment_id": comment["id"],