mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 11:57:34 -07:00
temp
This commit is contained in:
parent
1fc69a696c
commit
1e164cc94d
2 changed files with 12 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "calckey",
|
"name": "calckey",
|
||||||
"version": "12.119.0-calc.19-b3",
|
"version": "12.119.0-calc.19-b4",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -30,14 +30,18 @@ export const paramDef = {
|
||||||
|
|
||||||
// eslint-disable-next-line import/no-default-export
|
// eslint-disable-next-line import/no-default-export
|
||||||
export default define(meta, paramDef, async (ps, user) => {
|
export default define(meta, paramDef, async (ps, user) => {
|
||||||
const userList = await UserLists.findOneBy({
|
while (await UserLists.findOneBy({
|
||||||
id: ps.listId,
|
|
||||||
userId: user.id,
|
userId: user.id,
|
||||||
});
|
}) != null) {
|
||||||
|
const userList = await UserLists.findOneBy({
|
||||||
|
// id: ps.listId,
|
||||||
|
userId: user.id,
|
||||||
|
});
|
||||||
|
|
||||||
if (userList == null) {
|
if (userList == null) {
|
||||||
throw new ApiError(meta.errors.noSuchList);
|
throw new ApiError(meta.errors.noSuchList);
|
||||||
|
}
|
||||||
|
|
||||||
|
await UserLists.delete(userList.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
await UserLists.delete(userList.id);
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue