#I want to change the config value in the

1 messages · Page 1 of 1 (latest)

rancid estuary
#

I believe you need to fetch the configs first to get the id so you can use it in the update call

heavy cloak
#
RemoteConfigService.Instance.FetchCompleted += response =>
                {
                    _configId = RemoteConfigService.Instance.appConfig.assignmentId;
                    ChangeTokenValue(joinCode);
                };
```csharp
#

That is correct?