-
Couldn't load subscription status.
- Fork 6
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
I think there is an issue with insert.
Line 85 in 5d56d2a
| if (entity > this.entitySequence) this.entitySequence = entity + 1; |
if (entity > this.entitySequence) this.entitySequence = entity + 1; should be if (entity >= this.entitySequence) this.entitySequence = entity + 1;
Currently if we call a create after an insert, the create will have the same id than the last insert.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working