mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
More robust federation
In particular when fetching pleroma outbox
This commit is contained in:
parent
57cfff7885
commit
ee79b60e4e
8 changed files with 48 additions and 15 deletions
|
@ -36,7 +36,8 @@ function normalizeComment (comment: any) {
|
|||
if (!comment) return
|
||||
|
||||
if (typeof comment.url !== 'string') {
|
||||
comment.url = comment.url.href || comment.url.url
|
||||
if (typeof comment.url === 'object') comment.url = comment.url.href || comment.url.url
|
||||
else comment.url = comment.id
|
||||
}
|
||||
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue