From b6a741946169a73b26ef204091c7d3ffdbc8f4e9 Mon Sep 17 00:00:00 2001 From: xiaomlove Date: Mon, 14 Nov 2022 22:26:15 +0800 Subject: [PATCH] fix speical tag get key --- app/Models/Tag.php | 4 ++-- include/constants.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Models/Tag.php b/app/Models/Tag.php index 03858aec..014fd338 100644 --- a/app/Models/Tag.php +++ b/app/Models/Tag.php @@ -51,8 +51,8 @@ class Tag extends NexusModel public static function listSpecial(): array { return array_filter([ - Setting::get('system.official_tag'), - Setting::get('system.zero_bonus_tag'), + Setting::get('bonus.official_tag'), + Setting::get('bonus.zero_bonus_tag'), ]); } diff --git a/include/constants.php b/include/constants.php index 8dbf94c1..8b227138 100644 --- a/include/constants.php +++ b/include/constants.php @@ -1,6 +1,6 @@