diff --git a/keyserver/src/fetchers/thread-fetchers.js b/keyserver/src/fetchers/thread-fetchers.js --- a/keyserver/src/fetchers/thread-fetchers.js +++ b/keyserver/src/fetchers/thread-fetchers.js @@ -11,8 +11,8 @@ getCommunity, } from 'lib/shared/thread-utils.js'; import { - FUTURE_CODE_VERSION, hasMinCodeVersion, + NEXT_CODE_VERSION, } from 'lib/shared/version-utils.js'; import type { AvatarDBContent, ClientAvatar } from 'lib/types/avatar-types.js'; import type { RawMessageInfo, MessageInfo } from 'lib/types/message-types.js'; @@ -310,7 +310,7 @@ ); const stripMemberPermissions = hasMinCodeVersion(viewer.platformDetails, { native: 379, - web: FUTURE_CODE_VERSION, + web: NEXT_CODE_VERSION, }); const threadInfos: { diff --git a/native/redux/persist.js b/native/redux/persist.js --- a/native/redux/persist.js +++ b/native/redux/persist.js @@ -1484,6 +1484,10 @@ }, ops: [], }), + [84]: (state: AppState) => ({ + state, + ops: [], + }), }; // NOTE: renaming this object, and especially the `version` property @@ -1494,7 +1498,7 @@ storage: AsyncStorage, blacklist: persistBlacklist, debug: __DEV__, - version: 83, + version: 84, transforms: [ messageStoreMessagesBlocklistTransform, reportStoreTransform, diff --git a/web/redux/persist-constants.js b/web/redux/persist-constants.js --- a/web/redux/persist-constants.js +++ b/web/redux/persist-constants.js @@ -3,6 +3,6 @@ const rootKey = 'root'; const rootKeyPrefix = 'persist:'; const completeRootKey = `${rootKeyPrefix}${rootKey}`; -const storeVersion = 83; +const storeVersion = 84; export { rootKey, rootKeyPrefix, completeRootKey, storeVersion };