We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf98fe commit 88de241Copy full SHA for 88de241
flagsmith/models.go
@@ -47,7 +47,11 @@ func MakeFeatureStateValueFromClientFSV(clientFSV *flagsmithapi.FeatureStateValu
47
}
48
switch fsvType {
49
case "unicode":
50
- fsValue.StringValue = types.StringValue(*clientFSV.StringValue)
+ if clientFSV.StringValue == nil {
51
+ fsValue.StringValue = types.StringValue("")
52
+ } else {
53
+ fsValue.StringValue = types.StringValue(*clientFSV.StringValue)
54
+ }
55
return fsValue
56
57
case "int":
0 commit comments