mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
brackets lint
This commit is contained in:
parent
6e5d6ee64c
commit
0742fa1547
1 changed files with 3 additions and 2 deletions
|
@ -657,11 +657,12 @@ void FlagsState::GetFlagFeatureEntries(
|
|||
|
||||
for (const FeatureEntry& entry : feature_entries_) {
|
||||
std::string desc = entry.visible_description;
|
||||
if (skip_feature_entry.Run(entry))
|
||||
if (skip_feature_entry.Run(entry)) {
|
||||
if (flags::IsFlagExpired(flags_storage, entry.internal_name))
|
||||
desc.insert(0, " NOTE: THIS FLAG IS EXPIRED AND MAY STOP FUNCTIONING OR BE REMOVED SOON!");
|
||||
else
|
||||
continue;
|
||||
continue;
|
||||
}
|
||||
|
||||
base::Value::Dict data;
|
||||
data.Set("internal_name", entry.internal_name);
|
||||
|
|
Loading…
Reference in a new issue