Skip to content

Commit 7f3411a

Browse files
authored
fix(api): 修复获取字段值 (#28)
1 parent 1602b60 commit 7f3411a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Action.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public function getCustomFields($cid)
220220
$result[$value['name']] = array(
221221
"name" => $value['name'],
222222
"type" => $value['type'],
223-
"value" => $value[$value['type'] . '_value'],
223+
"value" => $value['str_value'],
224224
);
225225
}
226226
}

0 commit comments

Comments
 (0)