Skip to content

Commit

Permalink
add 'notifications' option to a newly created default config
Browse files Browse the repository at this point in the history
  • Loading branch information
thekvs committed Aug 3, 2017
1 parent 87b38ba commit fdb0902
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ Config::create_new_config()
option.append_attribute("name").set_value("url_timeout");
option.append_attribute("value").set_value(static_cast<float>(url_timeout_ms) / 1000.f);
}

{
auto option = root.append_child("option");
option.append_attribute("name").set_value("notifications");
option.append_attribute("value").set_value(notifications);
}
}

void
Expand Down

0 comments on commit fdb0902

Please sign in to comment.