Fix an ownership issue in friend channels

pull/1/head
yflory 2018-11-27 16:57:55 +01:00
parent ca45ff31d1
commit 008b5a3e9f
1 changed files with 2 additions and 1 deletions

View File

@ -405,9 +405,10 @@ define([
return;
}
var friend = getFriendFromChannel(chan.id) || {};
var cfg = {
validateKey: keys ? keys.validateKey : undefined,
owners: [proxy.edPublic, data.edPublic],
owners: [proxy.edPublic, friend.edPublic],
lastKnownHash: data.lastKnownHash
};
var msg = ['GET_HISTORY', chan.id, cfg];