1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 02:09:37 +02:00

Move normalize functions in helpers

This commit is contained in:
Chocobozzz 2018-05-11 15:55:39 +02:00
parent 5cf1350011
commit 938d3fa0ff
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 26 additions and 26 deletions

View file

@ -46,7 +46,7 @@ function isCommentContentValid (content: any) {
function normalizeComment (comment: any) {
if (!comment) return
if (!comment.url || typeof comment.url !== 'string') {
if (typeof comment.url !== 'string') {
comment.url = comment.url.href || comment.url.url
}