fix(plugin): sanitize version history markdown (#496)

This commit is contained in:
InfinityPacer
2026-06-18 19:30:24 +08:00
committed by GitHub
parent fdb34732cc
commit b1787b207d
2 changed files with 3 additions and 3 deletions

View File

@@ -137,7 +137,7 @@ async function loadPluginHistory() {
}
async function loadPluginReleases(plugin: Plugin | null | undefined = resolvedPlugin.value, force = false) {
if (!plugin?.id || !plugin?.repo_url || !plugin.release) {
if (!plugin?.id || !plugin?.repo_url || !plugin?.release) {
releaseDetail.value = null
releaseError.value = ''
return