Factor out for easier debugging
This commit is contained in:
parent
4b99948cd2
commit
963b6446c5
1 changed files with 2 additions and 1 deletions
|
|
@ -468,8 +468,9 @@ const processChats = debounce(() => {
|
||||||
const pubToAvatar = Streams.getPubToAvatar()
|
const pubToAvatar = Streams.getPubToAvatar()
|
||||||
const pubToDn = Streams.getPubToDn()
|
const pubToDn = Streams.getPubToDn()
|
||||||
const pubToLastSeenApp = Streams.getPubToLastSeenApp()
|
const pubToLastSeenApp = Streams.getPubToLastSeenApp()
|
||||||
|
const currentOutgoings = getCurrentOutgoings()
|
||||||
const existingOutgoings = /** @type {[string, Outgoing][]} */ (Object.entries(
|
const existingOutgoings = /** @type {[string, Outgoing][]} */ (Object.entries(
|
||||||
getCurrentOutgoings()
|
currentOutgoings
|
||||||
).filter(([_, o]) => o !== null))
|
).filter(([_, o]) => o !== null))
|
||||||
const pubToFeed = Streams.getPubToFeed()
|
const pubToFeed = Streams.getPubToFeed()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue