We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b38ba commit fdb0902Copy full SHA for fdb0902
src/config.cpp
@@ -98,6 +98,12 @@ Config::create_new_config()
98
option.append_attribute("name").set_value("url_timeout");
99
option.append_attribute("value").set_value(static_cast<float>(url_timeout_ms) / 1000.f);
100
}
101
+
102
+ {
103
+ auto option = root.append_child("option");
104
+ option.append_attribute("name").set_value("notifications");
105
+ option.append_attribute("value").set_value(notifications);
106
+ }
107
108
109
void
0 commit comments