diff --git a/web/src/lib/components/download-movie-dialog.svelte b/web/src/lib/components/download-movie-dialog.svelte
index 6f318e4..b1ffea6 100644
--- a/web/src/lib/components/download-movie-dialog.svelte
+++ b/web/src/lib/components/download-movie-dialog.svelte
@@ -243,6 +243,7 @@
Title
Size
Seeders
+ Score
Indexer Flags
Actions
@@ -253,6 +254,7 @@
{torrent.title}
{(torrent.size / 1024 / 1024 / 1024).toFixed(2)}GB
{torrent.seeders}
+ {torrent.score}
{#each torrent.flags as flag}
{flag}
diff --git a/web/src/lib/components/download-season-dialog.svelte b/web/src/lib/components/download-season-dialog.svelte
index 79e7b79..ee45a2b 100644
--- a/web/src/lib/components/download-season-dialog.svelte
+++ b/web/src/lib/components/download-season-dialog.svelte
@@ -283,6 +283,7 @@
Usenet
Seeders
Age
+ Score
Indexer Flags
Seasons
Actions
@@ -298,6 +299,7 @@
{torrent.usenet ? formatSecondsToOptimalUnit(torrent.age) : 'N/A'}
+ {torrent.score}
{#each torrent.flags as flag}
{flag}
diff --git a/web/src/lib/types.ts b/web/src/lib/types.ts
index 70b982a..0a18676 100644
--- a/web/src/lib/types.ts
+++ b/web/src/lib/types.ts
@@ -75,6 +75,7 @@ export interface PublicIndexerQueryResult {
size: number;
usenet: boolean;
age: number;
+ score: number;
}
export interface Season {