Skip to content

Commit

Permalink
fix:#290
Browse files Browse the repository at this point in the history
  • Loading branch information
mikumifa committed Jun 30, 2024
1 parent 404c53c commit bc07025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tab/go.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def inner_request():
logger.info(
f'状态码: {err}({ERRNO_DICT.get(err, "未知错误码")}), 请求体: {ret}'
)
if err == 0 or err == 100048:
if err == 0 or err == 100048 or err == 100079:
return ret, err
if err == 100051:
raise ValueError("token 过期")
Expand Down

0 comments on commit bc07025

Please sign in to comment.