Add internal option "weather_bot_username".
This commit is contained in:
parent
6d5d9a19aa
commit
9281efa3f0
@ -2034,6 +2034,10 @@ void ConfigManager::process_app_config(tl_object_ptr<telegram_api::JSONValue> &c
|
|||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (key == "weather_search_username") {
|
||||||
|
G()->set_option_string("weather_bot_username", get_json_value_string(std::move(key_value->value_), key));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
new_values.push_back(std::move(key_value));
|
new_values.push_back(std::move(key_value));
|
||||||
}
|
}
|
||||||
|
@ -85,7 +85,7 @@ class ConfigManager final : public NetQueryCallback {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
struct AppConfig {
|
struct AppConfig {
|
||||||
static constexpr int32 CURRENT_VERSION = 50;
|
static constexpr int32 CURRENT_VERSION = 51;
|
||||||
int32 version_ = 0;
|
int32 version_ = 0;
|
||||||
int32 hash_ = 0;
|
int32 hash_ = 0;
|
||||||
telegram_api::object_ptr<telegram_api::JSONValue> config_;
|
telegram_api::object_ptr<telegram_api::JSONValue> config_;
|
||||||
|
@ -453,6 +453,7 @@ bool OptionManager::is_internal_option(Slice name) {
|
|||||||
"story_expiring_limit_premium",
|
"story_expiring_limit_premium",
|
||||||
"upload_premium_speedup_notify_period",
|
"upload_premium_speedup_notify_period",
|
||||||
"video_note_size_max",
|
"video_note_size_max",
|
||||||
|
"weather_bot_username",
|
||||||
"webfile_dc_id"};
|
"webfile_dc_id"};
|
||||||
return internal_options.count(name) > 0;
|
return internal_options.count(name) > 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user