From 3d7c97b0ed46cc32f2b5ecb232444446bcd37e92 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 1 Dec 2018 22:54:30 -0700 Subject: [PATCH] Update Status model --- app/Status.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Status.php b/app/Status.php index a58a2b0b8..c7b5f0bf8 100644 --- a/app/Status.php +++ b/app/Status.php @@ -18,13 +18,14 @@ class Status extends Model */ protected $dates = ['deleted_at']; - protected $fillable = ['profile_id', 'visibility', 'in_reply_to_id']; + protected $fillable = ['profile_id', 'visibility', 'in_reply_to_id', 'reblog_of_id']; const STATUS_TYPES = [ 'photo', 'photo:album', 'video', 'video:album', + 'photo:video:album' 'share', 'reply', 'story',