From cc93b3e3a5100206aeb89ef4482d3b2f8575b576 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 29 Jan 2021 19:46:24 -0700 Subject: [PATCH 1/2] Update package.json, fixes #2593 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index caea60b51..8bc8bdd7e 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,7 @@ "sweetalert": "^2.1.2", "tributejs": "^4.1.3", "twitter-text": "^2.0.5", + "vue-blurhash": "^0.1.4", "vue-carousel": "^0.18.0", "vue-content-loader": "^0.2.3", "vue-cropperjs": "^4.1.0", From b7fcf8a504b2eeb09451fe955304e23d4e27c38a Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 29 Jan 2021 19:46:55 -0700 Subject: [PATCH 2/2] Update StatusLabelService --- app/Services/StatusLabelService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/StatusLabelService.php b/app/Services/StatusLabelService.php index 5ad6a05f5..2c1a3a7f4 100644 --- a/app/Services/StatusLabelService.php +++ b/app/Services/StatusLabelService.php @@ -20,7 +20,7 @@ class StatusLabelService return Cache::remember(self::CACHE_KEY . $status->id, now()->addDays(7), function() use($status) { return [ - 'covid' => Str::of(strtolower($status->caption))->contains(['covid','corona', 'coronavirus', 'vaccine', 'vaxx', 'vaccination']) + 'covid' => Str::of(strtolower($status->caption))->contains(['covid','corona', 'coronavirus', 'vaccine', 'vaxx', 'vaccination', 'plandemic']) ]; }); }