Remove async

This commit is contained in:
Jackson Harper 2022-03-03 19:31:51 -08:00
parent 05373ba3c7
commit 49092b707d

View file

@ -352,7 +352,7 @@ type Metadata = {
previewImage: string
}
export const parsePageMetadata = async (html: string): Promise<Metadata | undefined> => {
export const parsePageMetadata = (html: string): Metadata | undefined => {
try {
const window = new JSDOM(html).window