Bump versions 16-03-23

This commit is contained in:
KoalaSat 2023-03-16 15:25:02 +01:00
parent 1eec8a7ad7
commit 4bd65f3c91
No known key found for this signature in database
GPG Key ID: 2F7F61C6146AB157

View File

@ -79,6 +79,12 @@ export const NotificationsFeed: React.FC = () => {
useEffect(() => {
if (database && pubKeys.length > 0) {
getUsers(database, { includeIds: pubKeys }).then(setUsers)
relayPool?.subscribe('notification-users', [
{
kinds: [Kind.Metadata],
authors: pubKeys.filter((key, index, array) => array.indexOf(key) === index),
},
])
}
}, [pubKeys])