🐛 修复活动奖励点击异常

This commit is contained in:
BTMuli
2026-01-16 13:38:20 +08:00
parent e269719e4f
commit 5715030114

View File

@@ -157,6 +157,10 @@ async function handleMaterial(cur: TGApp.Game.ActCalendar.ActReward): Promise<vo
showCalendar.value = true;
return;
}
if (cur.wiki_url === "") {
showSnackbar.warn("未检测到跳转链接");
return;
}
await openUrl(cur.wiki_url);
}
</script>