File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ export default class EppoClient implements IEppoClient {
172
172
constructor (
173
173
private configurationStore : IConfigurationStore < Flag | ObfuscatedFlag > ,
174
174
private configurationRequestParameters ?: FlagConfigurationRequestParameters ,
175
- private readonly isObfuscated = false ,
175
+ private isObfuscated = false ,
176
176
) { }
177
177
178
178
public setConfigurationRequestParameters (
@@ -185,6 +185,10 @@ export default class EppoClient implements IEppoClient {
185
185
this . configurationStore = configurationStore ;
186
186
}
187
187
188
+ public setIsObfuscated ( isObfuscated : boolean ) {
189
+ this . isObfuscated = isObfuscated ;
190
+ }
191
+
188
192
public async fetchFlagConfigurations ( ) {
189
193
if ( ! this . configurationRequestParameters ) {
190
194
throw new Error (
You can’t perform that action at this time.
0 commit comments