@ -504,26 +504,24 @@
throw 'No conflicts to resolve' ;
}
return textsecure . storage . protocol . removeIdentityKey ( number ) . then ( function ( ) {
return textsecure . storage . protocol . saveIdentity ( number , identityKey ) . then ( function ( ) {
var promise = Promise . resolve ( ) ;
var conflicts = this . messageCollection . filter ( function ( message ) {
return message . hasKeyConflict ( number ) ;
} ) ;
// group incoming & outgoing
conflicts = _ . groupBy ( conflicts , function ( m ) { return m . get ( 'type' ) ; } ) ;
// sort each group by date and concatenate outgoing after incoming
conflicts = _ . flatten ( [
_ . sortBy ( conflicts . incoming , function ( m ) { return m . get ( 'received_at' ) ; } ) ,
_ . sortBy ( conflicts . outgoing , function ( m ) { return m . get ( 'received_at' ) ; } ) ,
] ) . forEach ( function ( message ) {
var resolveConflict = function ( ) {
return message . resolveConflict ( number ) ;
} ;
promise = promise . then ( resolveConflict , resolveConflict ) ;
} ) ;
return promise ;
} . bind ( this ) ) ;
return textsecure . storage . protocol . saveIdentity ( number , identityKey ) . then ( function ( ) {
var promise = Promise . resolve ( ) ;
var conflicts = this . messageCollection . filter ( function ( message ) {
return message . hasKeyConflict ( number ) ;
} ) ;
// group incoming & outgoing
conflicts = _ . groupBy ( conflicts , function ( m ) { return m . get ( 'type' ) ; } ) ;
// sort each group by date and concatenate outgoing after incoming
conflicts = _ . flatten ( [
_ . sortBy ( conflicts . incoming , function ( m ) { return m . get ( 'received_at' ) ; } ) ,
_ . sortBy ( conflicts . outgoing , function ( m ) { return m . get ( 'received_at' ) ; } ) ,
] ) . forEach ( function ( message ) {
var resolveConflict = function ( ) {
return message . resolveConflict ( number ) ;
} ;
promise = promise . then ( resolveConflict , resolveConflict ) ;
} ) ;
return promise ;
} . bind ( this ) ) ;
} ,
notify : function ( message ) {