mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
fix(notifications): only send a single notification when standard media becomes available
fixes #770
This commit is contained in:
@@ -21,7 +21,7 @@ export class MediaSubscriber implements EntitySubscriberInterface {
|
||||
if (entity.mediaType === MediaType.MOVIE) {
|
||||
const requestRepository = getRepository(MediaRequest);
|
||||
const relatedRequests = await requestRepository.find({
|
||||
where: { media: entity },
|
||||
where: { media: entity, is4k: false },
|
||||
});
|
||||
|
||||
if (relatedRequests.length > 0) {
|
||||
@@ -64,7 +64,7 @@ export class MediaSubscriber implements EntitySubscriberInterface {
|
||||
|
||||
for (const changedSeasonNumber of changedSeasons) {
|
||||
const requests = await requestRepository.find({
|
||||
where: { media: entity },
|
||||
where: { media: entity, is4k: false },
|
||||
});
|
||||
const request = requests.find(
|
||||
(request) =>
|
||||
|
Reference in New Issue
Block a user