mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 07:29:04 -07:00
Fix data bug
This commit is contained in:
parent
35f3976d6c
commit
a46d45b2cd
2 changed files with 8 additions and 3 deletions
|
|
@ -76,7 +76,12 @@ var details = function () { return ({
|
|||
inputUI: {
|
||||
type: 'text',
|
||||
},
|
||||
tooltip: 'Input your arr host here. Example: http://192.168.1.1:7878',
|
||||
tooltip: 'Input your arr host here.'
|
||||
+ '\\nExample:\\n'
|
||||
+ 'http://192.168.1.1:7878\\n'
|
||||
+ 'http://192.168.1.1:8989\\n'
|
||||
+ 'https://radarr.domain.com\\n'
|
||||
+ 'https://sonarr.domain.com\\n',
|
||||
},
|
||||
],
|
||||
outputs: [
|
||||
|
|
@ -141,7 +146,7 @@ var plugin = function (args) { return __awaiter(void 0, void 0, void 0, function
|
|||
return [4 /*yield*/, args.deps.axios(requestConfig)];
|
||||
case 4:
|
||||
res = _b.sent();
|
||||
seriesId = res.data.data.series.id;
|
||||
seriesId = res.data.series.id;
|
||||
requestConfig2 = {
|
||||
method: 'post',
|
||||
url: "".concat(arrHost, "/api/v3/command"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue