Factor out for easier debugging

This commit is contained in:
Daniel Lugo 2021-04-28 10:57:36 -04:00
parent 4b99948cd2
commit 963b6446c5

View file

@ -468,8 +468,9 @@ const processChats = debounce(() => {
const pubToAvatar = Streams.getPubToAvatar()
const pubToDn = Streams.getPubToDn()
const pubToLastSeenApp = Streams.getPubToLastSeenApp()
const currentOutgoings = getCurrentOutgoings()
const existingOutgoings = /** @type {[string, Outgoing][]} */ (Object.entries(
getCurrentOutgoings()
currentOutgoings
).filter(([_, o]) => o !== null))
const pubToFeed = Streams.getPubToFeed()