This commit is contained in:
shaoyongjun 2024-05-16 19:13:30 +08:00
parent 0072ede4b1
commit 8aef5f48be

View File

@ -149,7 +149,7 @@
* @returns 回复内容
*/
function getContent(data) {
const match = data.match(contentPattern);
const match = data?.match(contentPattern);
if (match) {
return match[1];
} else {