hotfix: try catch hasUnreadAntenna

This commit is contained in:
Kainoa Kanter 2023-05-26 16:32:59 +00:00
parent a3f3ccf514
commit c3456c027a

View File

@ -256,6 +256,7 @@ export const UserRepository = db.getRepository(User).extend({
}, },
async getHasUnreadAntenna(userId: User["id"]): Promise<boolean> { async getHasUnreadAntenna(userId: User["id"]): Promise<boolean> {
try {
const myAntennas = (await getAntennas()).filter((a) => a.userId === userId); const myAntennas = (await getAntennas()).filter((a) => a.userId === userId);
const unread = const unread =
@ -266,7 +267,7 @@ export const UserRepository = db.getRepository(User).extend({
}) })
: null; : null;
return unread != null; return unread != null; } catch(e) { return false; }
}, },
async getHasUnreadChannel(userId: User["id"]): Promise<boolean> { async getHasUnreadChannel(userId: User["id"]): Promise<boolean> {