fix
This commit is contained in:
parent
4fbbc144c8
commit
0a4e3b3f45
|
@ -84,12 +84,12 @@ async function handshakeSubdomainCheck(done) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// websiteSkylinkCheck returns the result of accessing siasky.net website through skylink
|
// websiteSkylinkCheck returns the result of accessing siasky.net website through skylink
|
||||||
// async function websiteSkylinkCheck(done) {
|
async function websiteSkylinkCheck(done) {
|
||||||
// const websiteSkylink = "0404dsjvti046fsua4ktor9grrpe76erq9jot9cvopbhsvsu76r4r30";
|
const websiteSkylink = "0404dsjvti046fsua4ktor9grrpe76erq9jot9cvopbhsvsu76r4r30";
|
||||||
// const url = await skynetClient.getSkylinkUrl(websiteSkylink, { subdomain: true });
|
const url = await skynetClient.getSkylinkUrl(websiteSkylink);
|
||||||
|
|
||||||
// return done(await genericAccessCheck("website_skylink", url));
|
return done(await genericAccessCheck("website_skylink", url));
|
||||||
// }
|
}
|
||||||
|
|
||||||
// accountWebsiteCheck returns the result of accessing account dashboard website
|
// accountWebsiteCheck returns the result of accessing account dashboard website
|
||||||
async function accountWebsiteCheck(done) {
|
async function accountWebsiteCheck(done) {
|
||||||
|
@ -193,7 +193,7 @@ const checks = [
|
||||||
skydConfigCheck,
|
skydConfigCheck,
|
||||||
uploadCheck,
|
uploadCheck,
|
||||||
websiteCheck,
|
websiteCheck,
|
||||||
// websiteSkylinkCheck,
|
websiteSkylinkCheck,
|
||||||
downloadCheck,
|
downloadCheck,
|
||||||
skylinkSubdomainCheck,
|
skylinkSubdomainCheck,
|
||||||
handshakeSubdomainCheck,
|
handshakeSubdomainCheck,
|
||||||
|
|
Reference in New Issue