add console log

This commit is contained in:
ThatOneCalculator 2022-09-15 15:01:53 -07:00
parent b33b688720
commit 824070e576
1 changed files with 4 additions and 2 deletions

View File

@ -68,10 +68,12 @@ os.api('admin/abuse-user-reports', {
if (reports.length > 0) thereIsUnresolvedAbuseReport = true; if (reports.length > 0) thereIsUnresolvedAbuseReport = true;
}); });
fetch('https://codeberg.org/api/v1/repos/thatonecalculator/calckey/releases?draft=false&pre-release=false&page=1&limit=1') await fetch('https://codeberg.org/api/v1/repos/thatonecalculator/calckey/releases?draft=false&pre-release=false&page=1&limit=1')
.then((response) => response.json()) .then((response) => response.json())
.then((data) => { .then((data) => {
if (data.length > 0 && data[0].tag_name !== version) { console.log(data);
console.log(data[0]);
if (data[0].tag_name !== version) {
updateAvailable = true; updateAvailable = true;
} }
}); });