feat(command): 未传入cookie则使用默认值

This commit is contained in:
imgyh 2023-04-16 18:59:09 +08:00
parent 2f13bd5122
commit 596a0fc633

View File

@ -201,7 +201,9 @@ def main():
return
tk = TikTok()
tk.headers["Cookie"] = configModel["cookie"]
if configModel["cookie"] is not None and configModel["cookie"] != "":
tk.headers["Cookie"] = configModel["cookie"]
if not os.path.exists(configModel["path"]):
os.mkdir(configModel["path"])