Fix NPE when creating room token (#6281)

This commit is contained in:
tool4ever
2024-10-12 08:57:15 +02:00
committed by GitHub
parent 4d8e55842f
commit 60216dc214
2 changed files with 2 additions and 2 deletions

View File

@@ -119,7 +119,7 @@ public class CardCopyService {
c.setSetCode(in.getSetCode());
for (final CardStateName state : in.getStates()) {
copyState(in, state, c, state);
copyState(in, state, c, state, false);
}
c.setState(in.getCurrentStateName(), false);