From cf974234eac1dce85e7375ee718018361270fea9 Mon Sep 17 00:00:00 2001 From: "jeanchristophe.mqt@gmail.com" Date: Sat, 23 Mar 2024 01:03:09 +0100 Subject: [PATCH] Commas added where missing --- .../tools/notifyRadarrOrSonarr/2.0.0/index.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/2.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/2.0.0/index.ts index eb78346..a7a0dd0 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/2.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/tools/notifyRadarrOrSonarr/2.0.0/index.ts @@ -73,15 +73,15 @@ interface IFileNames { } interface IParsedRequestResult { data: { - movie: { + movie?: { movieFile: { movieId: number - } - } - series: { + }, + }, + series?: { id: number - } - } + }, + }, } interface IRefreshDelegates { getIdFromParseRequestResult: (parseRequestResult: IParsedRequestResult) => number,