Storage service logging same

This commit is contained in:
Josh Perez 2021-04-06 15:54:47 -07:00 committed by GitHub
parent d6bb8ae35e
commit e4db9358cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 80 additions and 46 deletions

View file

@ -746,6 +746,10 @@ async function getConversationById(
) {
const data = await channels.getConversationById(id);
if (!data) {
return undefined;
}
return new Conversation(data);
}