fix: archive official VedAstro snapshot raw

This commit is contained in:
732642856
2026-07-17 16:40:24 +08:00
parent 5f1b44c250
commit 9ae7c69cc7
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ def _official_raw_response(result: dict[str, Any]) -> Any:
if raw:
return raw
raw = result.get("raw_response")
if isinstance(raw, dict) and raw.get("source") == "vedastro_official":
if isinstance(raw, dict) and str(raw.get("source") or "").startswith("vedastro_official"):
return raw
return None