mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-23 06:18:15 +08:00
branch_tier.cpp
This commit is contained in:
parent
9b1d55840d
commit
661d5668e9
|
@ -58,9 +58,14 @@ BranchTier::BranchTier(toml::value const &v_)
|
|||
|
||||
for(auto const &branch : branches)
|
||||
{
|
||||
bool enabled;
|
||||
std::string type;
|
||||
auto const &table = branch.as_table();
|
||||
|
||||
enabled = toml::find_or(v_,"enabled",false);
|
||||
if(!enabled)
|
||||
continue;
|
||||
|
||||
type = table.at("type").as_string();
|
||||
if(type == "literal")
|
||||
l::load_branch_literal(table,_branches);
|
||||
|
|
Loading…
Reference in New Issue
Block a user