Skip to content

Commit

Permalink
Revert changes of PR #323 related to scripts dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm1957 committed Oct 29, 2024
1 parent eb5cd98 commit ce747b3
Show file tree
Hide file tree
Showing 2 changed files with 127 additions and 129 deletions.
5 changes: 2 additions & 3 deletions scripts/createIssuesForAdapter.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* global $,jQuery */
const githubToken = ''; //https://github.com/settings/tokens
let issueTitle = 'Verify Compact mode for your adapter';
const issueBody = 'We have detected that your adapter supports the compact mode. Please use the latest js-controller 2.0 and verify that everything works.\r\n\r\nSome more information what is important to check can be found at ioBroker/ioBroker.js-controller#512 \r\n\r\nOn questions please answer to the linked issue. Please close this issue after your test and add the version number that you have tested please as a comment.\r\n\r\nThank you for your support.';
Expand All @@ -24,7 +23,7 @@ const start = async function () {

async function asyncForEach(array, callback) {
for (let index = 0; index < array.length; index++) {
await callback(array[index], index, array);
await callback(array [index], index, array);
}
}

Expand Down Expand Up @@ -119,7 +118,7 @@ async function filterList(array) {
async function getAdapterList() {
const link = 'https://raw.githubusercontent.com/ioBrokerChecker/testData/master/data.json';
try {
const result = await fetch(link, { cache: 'no-cache' });
const result = await fetch(link, {cache: 'no-cache'});
return await result.json();
} catch (e) {
return null;
Expand Down
Loading

0 comments on commit ce747b3

Please sign in to comment.