Skip to content

Commit 027454e

Browse files
committedOct 28, 2024
modrinth mod icon url can be null
1 parent 0ac2eaf commit 027454e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/modrinth.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ interface ModrinthMod {
1313
title: string
1414
categories: string[]
1515
downloads?: number
16-
icon_url: string
16+
icon_url: string | null
1717
}
1818

1919
type ModDataWithId = ModData & {
@@ -47,7 +47,7 @@ export default class ModrinthService {
4747
name: data.title,
4848
slug: data.slug,
4949
categories: data.categories ?? [],
50-
icon: data.icon_url,
50+
icon: data.icon_url ?? undefined,
5151
popularityScore: data.downloads,
5252
summary: data.description,
5353
websiteUrl: `https://modrinth.com/mod/${data.slug}`,

0 commit comments

Comments
 (0)
Please sign in to comment.