diff --git a/lib/components/keyserver-connection-handler.js b/lib/components/keyserver-connection-handler.js
--- a/lib/components/keyserver-connection-handler.js
+++ b/lib/components/keyserver-connection-handler.js
@@ -4,8 +4,12 @@
 import * as React from 'react';
 
 import { logOutActionTypes, useLogOut } from '../actions/user-actions.js';
-import { connectionSelector } from '../selectors/keyserver-selectors.js';
+import {
+  connectionSelector,
+  cookieSelector,
+} from '../selectors/keyserver-selectors.js';
 import { IdentityClientContext } from '../shared/identity-client-context.js';
+import { OlmSessionCreatorContext } from '../shared/olm-session-creator-context.js';
 import type { BaseSocketProps } from '../socket/socket.react.js';
 import { useDispatchActionPromise } from '../utils/redux-promise-utils.js';
 import { useSelector } from '../utils/redux-utils.js';
@@ -26,6 +30,7 @@
   const hasConnectionIssue = useSelector(
     state => !!connectionSelector(keyserverID)(state)?.connectionIssue,
   );
+  const cookie = useSelector(cookieSelector(keyserverID));
 
   React.useEffect(() => {
     if (hasConnectionIssue) {
@@ -38,6 +43,9 @@
   )?.identityClient;
   invariant(identityClient, 'Identity client should be set');
 
+  const olmSessionCreator = React.useContext(OlmSessionCreatorContext);
+  invariant(olmSessionCreator, 'Olm session creator should be set');
+
   React.useEffect(() => {
     if (!usingCommServicesAccessToken) {
       return;
@@ -45,7 +53,15 @@
 
     void (async () => {
       try {
-        await identityClient.getKeyserverKeys(keyserverID);
+        const keyserverKeys =
+          await identityClient.getKeyserverKeys(keyserverID);
+
+        await olmSessionCreator.notificationsSessionCreator(
+          cookie,
+          keyserverKeys.identityKeysBlob.notificationIdentityPublicKeys,
+          keyserverKeys.notifInitializationInfo,
+          keyserverID,
+        );
       } catch (e) {
         console.log(
           `Error getting keys for keyserver with id ${keyserverID}`,
@@ -53,7 +69,7 @@
         );
       }
     })();
-  }, [keyserverID, identityClient]);
+  }, [keyserverID, identityClient, olmSessionCreator, cookie]);
 
   if (keyserverID !== ashoatKeyserverID) {
     return null;