From 4abfe76a49a0cc81826fc596186c3a7bd69fba4d Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 28 Jan 2021 18:42:15 -0700 Subject: [PATCH] Update StatusLabelService, change config key --- 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 2f4c291a7..5ad6a05f5 100644 --- a/app/Services/StatusLabelService.php +++ b/app/Services/StatusLabelService.php @@ -12,7 +12,7 @@ class StatusLabelService public static function get(Status $status) { - if(config('instance.label.covid') == false || !$status) { + if(config('instance.label.covid.enabled') == false || !$status) { return [ 'covid' => false ];