diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 522bc76f4..a650828b3 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -862,6 +862,12 @@
"devicePairingReceived": {
"message": "Device Linking Received"
},
+ "devicePairingRequestReceivedLimitTitle": {
+ "message": "Device linking limit reached."
+ },
+ "devicePairingRequestReceivedLimitDescription": {
+ "message": "To change your linked devices, please unlink a device first."
+ },
"devicePairingRequestReceivedNoListenerTitle": {
"message": "Device linking request received."
},
@@ -2374,7 +2380,7 @@
"message": "Verify Password"
},
"devicePairingHeader": {
- "message": "Open Session on your other device and navigate to the Linked Devices section in your user account screen. Select Link a Device to prepare your other device for pairing, then enter your Session ID below to link this device to your Session ID."
+ "message": "1. Open Session on your other device.
2. Navigate to the Linked Devices section in your user account screen.
3. Select 'Link a Device' to prepare your other device for pairing
4. Enter your Session ID below to link this device to your Session ID."
},
"enterSessionIDHere": {
"message": "Enter other device’s Session ID here"
diff --git a/js/background.js b/js/background.js
index 89f5d242f..69dea0a57 100644
--- a/js/background.js
+++ b/js/background.js
@@ -1371,12 +1371,25 @@
});
Whisper.events.on('devicePairingRequestReceivedNoListener', async () => {
+ // If linking limit has been reached, let master know.
+ const ourKey = textsecure.storage.user.getNumber();
+ const ourPubKey = window.libsession.Types.PubKey.cast(ourKey);
+ const authorisations = await window.libsession.Protocols.MultiDeviceProtocol.fetchPairingAuthorisations(ourPubKey);
+
+ const title = authorisations.length
+ ? window.i18n('devicePairingRequestReceivedLimitTitle')
+ : window.i18n('devicePairingRequestReceivedNoListenerTitle');
+
+ const description = authorisations.length
+ ? window.i18n('devicePairingRequestReceivedLimitDescription', window.CONSTANTS.MAX_LINKED_DEVICES)
+ : window.i18n('devicePairingRequestReceivedNoListenerDescription');
+
+ const type = authorisations.length ? 'info' : 'warning';
+
window.pushToast({
- title: window.i18n('devicePairingRequestReceivedNoListenerTitle'),
- description: window.i18n(
- 'devicePairingRequestReceivedNoListenerDescription'
- ),
- type: 'info',
+ title,
+ description,
+ type,
id: 'pairingRequestNoListener',
shouldFade: false,
});
diff --git a/preload.js b/preload.js
index 15ad38c5e..e547e4383 100644
--- a/preload.js
+++ b/preload.js
@@ -82,6 +82,7 @@ window.CONSTANTS = new (function() {
this.MAX_USERNAME_LENGTH = 20;
this.MAX_GROUP_NAME_LENGTH = 64;
this.DEFAULT_PUBLIC_CHAT_URL = appConfig.get('defaultPublicChatServer');
+ this.MAX_LINKED_DEVICES = 1;
this.MAX_CONNECTION_DURATION = 5000;
this.MAX_MESSAGE_BODY_LENGTH = 64 * 1024;
// Limited due to the proof-of-work requirement
diff --git a/ts/components/session/RegistrationTabs.tsx b/ts/components/session/RegistrationTabs.tsx
index db7fdd8da..a024f02fb 100644
--- a/ts/components/session/RegistrationTabs.tsx
+++ b/ts/components/session/RegistrationTabs.tsx
@@ -418,7 +418,7 @@ export class RegistrationTabs extends React.Component<{}, State> {
return (