diff options
| author | mayx | 2025-11-01 11:41:16 +0000 |
|---|---|---|
| committer | mayx | 2025-11-01 11:41:16 +0000 |
| commit | d13dd560c26f1bbe2898acc386f9319b9f4834c4 (patch) | |
| tree | a5e1100903bd6f1130714afac43512dd0b96406c /_layouts/post.html | |
| parent | 1198b6c191dc2280f7393ee22fecdb9db8b48925 (diff) | |
- /_posts/2025-11-01-mirrors.md
- /_data/other_repo_list.csv
- /_layouts/post.html
- /Live2dHistoire/live2d/js/message.js
Diffstat (limited to '_layouts/post.html')
| -rw-r--r-- | _layouts/post.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 1de008b..54ae900 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -59,7 +59,9 @@ layout: default return; } else { const data = JSON.parse(event.data); - outputContainer.textContent += data.response; + if (data.response) { + outputContainer.textContent += data.response; + } } } }); |
