From 1430f5328f54003637edb16c72366f42774ceaee Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 27 May 2023 07:23:20 -0600 Subject: [PATCH] Update Status model, increase max mentions, hashtags and links --- app/Status.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Status.php b/app/Status.php index 4148a4f9..77262597 100644 --- a/app/Status.php +++ b/app/Status.php @@ -50,11 +50,11 @@ class Status extends Model 'loop' ]; - const MAX_MENTIONS = 5; + const MAX_MENTIONS = 20; - const MAX_HASHTAGS = 30; + const MAX_HASHTAGS = 60; - const MAX_LINKS = 2; + const MAX_LINKS = 5; public function profile() {