We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 570b8cf commit 5dd884dCopy full SHA for 5dd884d
apps/web/components/VideoThumbnail.tsx
@@ -41,10 +41,7 @@ export const VideoThumbnail: React.FC<VideoThumbnailProps> = memo(
41
);
42
if (response.ok) {
43
const data = await response.json();
44
- // Add cache busting to the thumbnail URL as well
45
- return `${data.screen}${
46
- data.screen.includes("?") ? "&" : "?"
47
- }t=${cacheBuster}`;
+ return data.screen;
48
} else {
49
throw new Error("Failed to fetch pre-signed URLs");
50
}
0 commit comments