uncatatsrophe
This commit is contained in:
parent
275f9a4816
commit
af08df32b4
1 changed files with 7 additions and 5 deletions
|
@ -61,12 +61,14 @@ async function main(type) {
|
|||
.then(x => x.json()));
|
||||
extraFetch.forEach(x => {
|
||||
x.studio = studios[typed].title;
|
||||
x.studioID = user;
|
||||
});
|
||||
} else if (typed == '#' && type == '#comment') {
|
||||
extraFetch = await (fetch(`https://hf.zenoverse.net/studio_comment/${user}`)
|
||||
.then(x => x.json()));
|
||||
extraFetch.forEach(x => x.studio = studios[typed].title);
|
||||
extraFetch.forEach(x => {
|
||||
x.studio = studios[typed].title;
|
||||
x.studioID = user
|
||||
});
|
||||
} else if (typed == '@' && type == '#user') {
|
||||
extraFetch = await (fetch(`https://hf.zenoverse.net/user/${user}`)
|
||||
.then(x => x.json()));
|
||||
|
|
Loading…
Reference in a new issue