Merge pull request #1873 from Bilb/fix-slow-send-opengroup-message

fix slow sending of opengroup message
pull/1876/head
Audric Ackermann 4 years ago committed by GitHub
commit 138a00fe19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -743,9 +743,9 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
if (!this.isPublic()) {
messageWithSchema.destination = destination;
} else {
// set the serverTimestamp only if this conversation is a public one.
messageWithSchema.serverTimestamp = new Date().getTime();
messageWithSchema.serverTimestamp = Date.now();
}
messageWithSchema.source = UserUtils.getOurPubKeyStrFromCache();
messageWithSchema.sourceDevice = 1;

Loading…
Cancel
Save