We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b965c1c commit 7b859c2Copy full SHA for 7b859c2
1 file changed
core/class/script.class.php
@@ -120,7 +120,12 @@ public function postSave() {
120
if ($this->getLogicalId() == 'refresh' || $this->getEqlogic()->getIsEnable() != 1) {
121
return;
122
}
123
- $this->refreshInfo();
+ try {
124
+ $this->refreshInfo();
125
+ } catch (\Throwable $th) {
126
+ log::add('script','error',$th->getMessage());
127
+ }
128
+
129
130
131
private function replaceTags($request) {
0 commit comments