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 e220bc4 commit 1016b00Copy full SHA for 1016b00
packages/shared/sdk-server/src/store/InMemoryFeatureStore.ts
@@ -93,6 +93,7 @@ export default class InMemoryFeatureStore implements LDFeatureStore {
93
const item = items[key];
94
if (Object.hasOwnProperty.call(existingItems, key)) {
95
const old = existingItems[key];
96
+ // TODO: SDK-1046 - Determine if version check should be removed
97
if (!old || old.version < item.version) {
98
existingItems[key] = item;
99
}
0 commit comments