From 9909bd0d33fb9bdda2030606350b1ffa3ca239e3 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 19 Sep 2026 02:36:43 -0600 Subject: [PATCH] Fix video embeds. Closes #7373 --- app/Http/Controllers/StatusController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/StatusController.php b/app/Http/Controllers/StatusController.php index 495ac210d..5e436094f 100644 --- a/app/Http/Controllers/StatusController.php +++ b/app/Http/Controllers/StatusController.php @@ -110,7 +110,7 @@ class StatusController extends Controller intval($status['account']['id']) !== intval($profile['id']) || $status['sensitive'] || $status['visibility'] !== 'public' || - ! in_array($status['pf_type'], ['photo', 'photo:album']) + ! in_array($status['pf_type'], ['photo', 'photo:album', 'video']) ) { return $this->embedRemoved(); }