diff --git a/src/components/player/atoms/settings/CaptionsView.tsx b/src/components/player/atoms/settings/CaptionsView.tsx
index 2c3fcbeb..f7cad384 100644
--- a/src/components/player/atoms/settings/CaptionsView.tsx
+++ b/src/components/player/atoms/settings/CaptionsView.tsx
@@ -113,6 +113,20 @@ export function CaptionOption(props: {
{props.subtitleType.toUpperCase()}
)}
+ {props.subtitleSource && (
+
+ {props.subtitleSource.toUpperCase()}
+
+ )}
{props.isHearingImpaired && (
)}
diff --git a/src/utils/externalSubtitles.ts b/src/utils/externalSubtitles.ts
index 9a83498c..855304b3 100644
--- a/src/utils/externalSubtitles.ts
+++ b/src/utils/externalSubtitles.ts
@@ -194,6 +194,7 @@ export async function scrapeOpenSubtitlesCaptions(
type: caption.SubFormat || "srt",
needsProxy: false,
opensubtitles: true,
+ source: "opensubs", // shortened becuase used on CaptionView for badge
});
}