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/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 };