|
|
@ -221,10 +221,6 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
first = false;
|
|
|
|
first = false;
|
|
|
|
|
|
|
|
|
|
|
|
// The min and max message ttl value
|
|
|
|
|
|
|
|
const MIN_MESSAGE_TTL = 12;
|
|
|
|
|
|
|
|
const MAX_MESSAGE_TTL = 96;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// These make key operations available to IPC handlers created in preload.js
|
|
|
|
// These make key operations available to IPC handlers created in preload.js
|
|
|
|
window.Events = {
|
|
|
|
window.Events = {
|
|
|
|
getDeviceName: () => textsecure.storage.user.getDeviceName(),
|
|
|
|
getDeviceName: () => textsecure.storage.user.getDeviceName(),
|
|
|
@ -241,17 +237,12 @@
|
|
|
|
window.setMenuBarVisibility(!value);
|
|
|
|
window.setMenuBarVisibility(!value);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
getMessageTTL: () => {
|
|
|
|
getMessageTTL: () => storage.get('message-ttl', 24),
|
|
|
|
// Make sure the ttl is between a given range
|
|
|
|
|
|
|
|
const current = storage.get('message-ttl', 24);
|
|
|
|
|
|
|
|
return Math.max(MIN_MESSAGE_TTL, Math.min(current, MAX_MESSAGE_TTL));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
setMessageTTL: value => {
|
|
|
|
setMessageTTL: value => {
|
|
|
|
// Make sure the ttl is between a given range and is valid
|
|
|
|
// Make sure the ttl is between a given range and is valid
|
|
|
|
const intValue = parseInt(value, 10);
|
|
|
|
const intValue = parseInt(value, 10);
|
|
|
|
const ttl = Number.isNaN(intValue) ? 24 : intValue;
|
|
|
|
const ttl = Number.isNaN(intValue) ? 24 : intValue;
|
|
|
|
const current = Math.max(MIN_MESSAGE_TTL, Math.min(ttl, MAX_MESSAGE_TTL));
|
|
|
|
storage.put('message-ttl', ttl);
|
|
|
|
storage.put('message-ttl', current);
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
getReadReceiptSetting: () =>
|
|
|
|
getReadReceiptSetting: () =>
|
|
|
|