1
0
mirror of https://github.com/karl0ss/homepage.git synced 2025-05-13 10:08:11 +01:00

Fix: possible sonarr widget queue duplicates ()

This commit is contained in:
patopesto 2023-10-10 00:05:29 -04:00 committed by GitHub
parent 596e5c9b84
commit 29b7d5756c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -72,7 +72,7 @@ export default function Component({ service }) {
timeLeft={queueEntry.timeLeft}
title={getTitle(queueEntry, seriesData) ?? t("sonarr.unknown")}
activity={formatDownloadState(queueEntry.trackedDownloadState)}
key={`${queueEntry.seriesId}-${queueEntry.sizeLeft}`}
key={`${queueEntry.seriesId}-${queueEntry.episodeId}`}
/>
))
}