|
|
@ -678,11 +678,9 @@ async function getSwarmNodesByPubkey(pubkey) {
|
|
|
|
async function saveSwarmNodesForPubKey(pubKey, swarmNodes, { Conversation }) {
|
|
|
|
async function saveSwarmNodesForPubKey(pubKey, swarmNodes, { Conversation }) {
|
|
|
|
const conversation = await getConversationById(pubKey, { Conversation });
|
|
|
|
const conversation = await getConversationById(pubKey, { Conversation });
|
|
|
|
conversation.set({ swarmNodes });
|
|
|
|
conversation.set({ swarmNodes });
|
|
|
|
await updateConversation(
|
|
|
|
await updateConversation(conversation.id, conversation.attributes, {
|
|
|
|
conversation.id,
|
|
|
|
Conversation,
|
|
|
|
conversation.attributes,
|
|
|
|
});
|
|
|
|
{ Conversation }
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function getConversationCount() {
|
|
|
|
async function getConversationCount() {
|
|
|
|