总算能回复了😭😭😭

This commit is contained in:
tt-P607
2025-09-20 12:43:37 +08:00
parent a2b9f963e4
commit 6b5bf02382
3 changed files with 7 additions and 3 deletions

View File

@@ -110,7 +110,11 @@ class RelationshipFetcher:
if person_name == nickname_str and not short_impression:
return ""
current_points = person_info.get("points") or []
current_points = person_info.get("points")
if isinstance(current_points, str):
current_points = orjson.loads(current_points)
else:
current_points = current_points or []
# 按时间排序forgotten_points
current_points.sort(key=lambda x: x[2])