aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-06-20 08:57:52 +0200
committerChocobozzz <me@florianbigard.com>2018-06-20 08:57:52 +0200
commit575712a5c970ea1edeb6b44a35a095fc08193a3d (patch)
treebc19ed8f75667ae31a7858d786123d9391ec1cb6 /server
parent9c2e0dbfa9098675390e00ccb0fa49c51b3c6732 (diff)
downloadPeerTube-575712a5c970ea1edeb6b44a35a095fc08193a3d.tar.gz
PeerTube-575712a5c970ea1edeb6b44a35a095fc08193a3d.tar.zst
PeerTube-575712a5c970ea1edeb6b44a35a095fc08193a3d.zip
Fix HTTP fallback when having videostream issues on firefox
Diffstat (limited to 'server')
-rw-r--r--server/helpers/custom-validators/activitypub/actor.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/custom-validators/activitypub/actor.ts b/server/helpers/custom-validators/activitypub/actor.ts
index 9a0bb32c1..c7a64e24d 100644
--- a/server/helpers/custom-validators/activitypub/actor.ts
+++ b/server/helpers/custom-validators/activitypub/actor.ts
@@ -92,7 +92,7 @@ function isActorUpdateActivityValid (activity: any) {
92} 92}
93 93
94function normalizeActor (actor: any) { 94function normalizeActor (actor: any) {
95 if (!actor) return 95 if (!actor || !actor.url) return
96 96
97 if (typeof actor.url !== 'string') { 97 if (typeof actor.url !== 'string') {
98 actor.url = actor.url.href || actor.url.url 98 actor.url = actor.url.href || actor.url.url