no message

This commit is contained in:
hellcat 2025-04-02 20:43:50 +08:00
parent 56b460fa56
commit 96190ea437

View File

@ -250,6 +250,7 @@ final class HookController
break;
}
$sMsg = '?';
try {
$oNode = Node::find($iNodeId);
@ -258,7 +259,9 @@ final class HookController
$sMsg = "没有这个id";
} else {
$oNode->$sField = $sSet;
$sMsg = $oNode->save();
$oNode->save();
$sMsg = "ok";
}
} catch (\Illuminate\Database\QueryException $e) {