[BUG] <NODE RENAME IS NOT WORKING ANYMORE>
Author: it-global-architectCreated Apr 13, 2026Updated May 7, 2026
确认版本最新
- 我已经确认在最新Action编译的版本中复现
检索issue
- 我已经确认之前没有issue涉及此BUG
subconverter版本
latest
转换过程
node rename script
转换设置
Hi, I am using a script to rename a node and add the group the node belongs to. It was working before but it's not working anymore.
复现步骤
Use the following script: rename_node=!!script:function rename(node) { const p='';\n const g=node.GroupID;\n if(g == 0)\n p='[GROUP0]';\n if(g == 1)\n p='[GROUP1]';\n if(g == 2)\n p='[GROUP2]';\n if(g == 3)\n p='[GROUP3]';\n return node.Remark +' ' + p;\n}
期望结果
The node remains with original name + the group id
实际结果
the group id is not added to the node name
错误信息
there is no error message, everything works fine besides the node not getting the group id infoSource: tindy2013/subconverter