Convert Invidious comment publishText to locale (#2758)

This commit is contained in:
Emma 2022-10-24 11:10:06 -04:00 committed by GitHub
parent 414ef5545a
commit 12cfe6a3fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -273,8 +273,9 @@ export default Vue.extend({
}
comment.replies = []
comment.time = comment.publishedText
comment.time = toLocalePublicationString({
publishText: comment.publishedText
})
return comment
})