Commit 36f7de0d392d81a628395106e0aa5ab50ac684c4
Merge branch 'tr/bugfix' into tr/publish/preview
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/actions/ActivityAction.lua
... | ... | @@ -1304,7 +1304,7 @@ function _M.newSignRpc(agent, data) |
1304 | 1304 | if not open then return 1 end |
1305 | 1305 | |
1306 | 1306 | local actData = role.activity:getActData("NewSign") |
1307 | - if actData[actData["0"] or 0] then | |
1307 | + if actData[tostring(actData["0"] or 0)] then | |
1308 | 1308 | return 2 |
1309 | 1309 | end |
1310 | 1310 | ... | ... |