Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix data bug #509

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down Expand Up @@ -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"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const plugin = async (args: IpluginInputArgs): Promise<IpluginOutputArgs> => {
};

const res = await args.deps.axios(requestConfig);
const seriesId = res.data.data.series.id;
const seriesId = res.data.series.id;

const requestConfig2 = {
method: 'post',
Expand Down
Loading