syncConf every 7 days and fix link device

pull/1596/head
Audric Ackermann 4 years ago
parent 515b83f611
commit 5525312542
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -756,8 +756,9 @@
messageReceiver.addEventListener('sent', window.DataMessageReceiver.handleMessageEvent);
messageReceiver.addEventListener('reconnect', onReconnect);
messageReceiver.addEventListener('configuration', onConfiguration);
// messageReceiver.addEventListener('typing', onTyping);
window.SwarmPolling.addPubkey(window.libsession.Utils.UserUtils.getOurPubKeyStrFromCache());
window.SwarmPolling.start();
window.libsession.Utils.AttachmentDownloads.start({
logger: window.log,
});

@ -328,6 +328,7 @@ window.LokiPublicChatAPI = require('./js/modules/loki_public_chat_api');
window.LokiFileServerAPI = require('./js/modules/loki_file_server_api');
window.LokiPushNotificationServerApi = require('./js/modules/loki_push_notification_server_api');
window.SwarmPolling = require('./ts/session/snode_api/swarmPolling').SwarmPolling.getInstance();
const WorkerInterface = require('./js/modules/util_worker_interface');

@ -42,7 +42,7 @@ export const syncConfigurationIfNeeded = async () => {
const now = Date.now();
// if the last sync was less than 2 days before, return early.
if (Math.abs(now - lastSyncedTimestamp) < DAYS * 2) {
if (Math.abs(now - lastSyncedTimestamp) < DAYS * 7) {
return;
}

Loading…
Cancel
Save