mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 17:37:29 -07:00
Fix
This commit is contained in:
parent
5b798ed0c2
commit
d86bbefe22
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ const user = args[0];
|
|||
|
||||
const q = user.startsWith('@') ? {
|
||||
username: user.split('@')[1],
|
||||
host: user.split('@')[2]
|
||||
host: user.split('@')[2] || null
|
||||
} : { _id: new mongo.ObjectID(user) };
|
||||
|
||||
console.log(`Suspending ${user}...`);
|
||||
|
|
Loading…
Reference in a new issue