fix tasks

This commit is contained in:
yuanmengqi
2025-07-01 15:57:14 +00:00
parent b48c69a2fb
commit 2e3a4a5ba9
8 changed files with 35 additions and 18 deletions

View File

@@ -1444,6 +1444,8 @@ def get_active_tab_url_parse(env, config: Dict[str, Any]):
# change original key to new key, keep value unchange
value = extracted_params.pop(key)
extracted_params[config["replace"][key]] = value
if config.get("split_list", False):
extracted_params = {key: extracted_params[key].split(',') for key in extracted_params.keys()}
return extracted_params