More eslint fixes

This commit is contained in:
jeanchristophe.mqt@gmail.com 2024-03-22 22:38:36 +01:00
parent 142134a192
commit 65e6d5b3d9
2 changed files with 3 additions and 3 deletions

View file

@ -96,7 +96,7 @@ var details = function () { return ({
{ {
number: 2, number: 2,
tooltip: 'Radarr or Sonnar do not know this file', tooltip: 'Radarr or Sonnar do not know this file',
} },
], ],
}); }; }); };
exports.details = details; exports.details = details;

View file

@ -63,7 +63,7 @@ const details = (): IpluginDetails => ({
{ {
number: 2, number: 2,
tooltip: 'Radarr or Sonnar do not know this file', tooltip: 'Radarr or Sonnar do not know this file',
} },
], ],
}); });
@ -173,7 +173,7 @@ const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
(id) => JSON.stringify({ name: 'RefreshSeries', seriesId: id }), (id) => JSON.stringify({ name: 'RefreshSeries', seriesId: id }),
}, },
}, },
} };
const refreshed = await refresh(arr === 'radarr' ? refreshTypes.radarr : refreshTypes.sonarr); const refreshed = await refresh(arr === 'radarr' ? refreshTypes.radarr : refreshTypes.sonarr);