Merge commit '5c8558e293989094693f918a63b672301f1aeb55' into merge_1_21_1

* commit '5c8558e293989094693f918a63b672301f1aeb55':
  v1.21.1
  v1.21.1-beta.1
  Fix: Navigation to message via quote click didn't always work
  mainWindow.close - be ready for null mainWindow
  Ensure that Curve.async points to worker after startWorker call
  Protect against unhandled promises when calling checkForUpdates
  Reenable send when link preview is missing an image

# Conflicts:
#	package.json
pull/188/head
sachaaaaa 6 years ago
commit 68fe552156

@ -18,8 +18,12 @@ function autoUpdateDisabled() {
); );
} }
function checkForUpdates() { async function checkForUpdates() {
autoUpdater.checkForUpdates(); try {
await autoUpdater.checkForUpdates();
} catch (error) {
console.log('checkForUpdates error:', error.stack);
}
} }
let showingDialog = false; let showingDialog = false;
@ -58,7 +62,7 @@ function showUpdateDialog(mainWindow, messages) {
} }
function onError(error) { function onError(error) {
console.log('Got an error while updating: ', error.stack); console.log('Got an error while updating:', error.stack);
} }
function initialize(getMainWindow, messages) { function initialize(getMainWindow, messages) {

@ -773,9 +773,9 @@
// Look for message in memory first, which would tell us if we could scroll to it // Look for message in memory first, which would tell us if we could scroll to it
const targetMessage = this.model.messageCollection.find(item => { const targetMessage = this.model.messageCollection.find(item => {
const messageAuthor = item.getContact().id; const messageAuthor = item.getContact();
if (author !== messageAuthor) { if (!messageAuthor || author !== messageAuthor.id) {
return false; return false;
} }
if (id !== item.get('sent_at')) { if (id !== item.get('sent_at')) {

File diff suppressed because it is too large Load Diff

@ -109,7 +109,7 @@ Message.prototype = {
const item = new textsecure.protobuf.DataMessage.Preview(); const item = new textsecure.protobuf.DataMessage.Preview();
item.title = preview.title; item.title = preview.title;
item.url = preview.url; item.url = preview.url;
item.image = preview.image; item.image = preview.image || null;
return item; return item;
}); });
} }

@ -370,7 +370,9 @@ function createWindow() {
} }
await requestShutdown(); await requestShutdown();
mainWindow.readyForShutdown = true; if (mainWindow) {
mainWindow.readyForShutdown = true;
}
app.quit(); app.quit();
}); });

@ -3,7 +3,7 @@
"productName": "Loki Messenger", "productName": "Loki Messenger",
"description": "Private messaging from your desktop", "description": "Private messaging from your desktop",
"repository": "https://github.com/sloki-project/loki-messenger.git", "repository": "https://github.com/sloki-project/loki-messenger.git",
"version": "1.21.0", "version": "1.21.1",
"license": "GPL-3.0", "license": "GPL-3.0",
"author": { "author": {
"name": "Open Whisper Systems", "name": "Open Whisper Systems",

Loading…
Cancel
Save