fix: BlackReturn -> ReturnButton [skip ci] (#6806)

fix #6795
This commit is contained in:
zzyyyl
2023-10-09 12:33:21 +08:00
committed by GitHub
parent d1b17b51be
commit 54b9bc1277
2 changed files with 2 additions and 2 deletions

View File

@@ -550,7 +550,7 @@ void asst::InfrastAbstractTask::order_opers_selection(const std::vector<std::str
void asst::InfrastAbstractTask::click_return_button()
{
LogTraceFunction;
ProcessTask(*this, { "Infrast@BlackReturn" }).run();
ProcessTask(*this, { "Infrast@ReturnButton" }).run();
}
bool asst::InfrastAbstractTask::click_bottom_left_tab()

View File

@@ -18,7 +18,7 @@ asst::StartUpTask::StartUpTask(const AsstCallback& callback, Assistant* inst)
// 前两项认为用户已手动启动至首页
m_start_up_task_ptr->set_tasks({ "StartAtHome", "StartWithSanity", "StartUpBegin" })
.set_times_limit("BlackReturn", 0)
.set_times_limit("ReturnButton", 0)
.set_task_delay(Config.get_options().task_delay * 2)
.set_retry_times(30);
m_account_switch_task_ptr->set_retry_times(0);