Open blackchoey opened 10 months ago
Javascript/Typescript, C#, Python
latest
If I call TurnStateEntry.delete() first, then call TurnStateEntry.replace(...), TurnStateEntry.isDeleted is still true. The expected value should be false based on the TurnStateEntry.value's behavior.
TurnStateEntry.delete()
TurnStateEntry.replace(...)
TurnStateEntry.isDeleted
true
false
TurnStateEntry.value
1. Call TurnStateEntry.delete() 2. Call TurnStateEntry.replace(...) 3. Call TurnStateEntry.isDeleted
Python SDK fixed this in #1321
Language
Javascript/Typescript, C#, Python
Version
latest
Description
If I call
TurnStateEntry.delete()
first, then callTurnStateEntry.replace(...)
,TurnStateEntry.isDeleted
is stilltrue
. The expected value should befalse
based on theTurnStateEntry.value
's behavior.Reproduction Steps