forked from DebaucheryLibrarian/traxxx
Warn instead of error when stash import user does not exist.
This commit is contained in:
@@ -120,7 +120,8 @@ async function load() {
|
||||
.first();
|
||||
|
||||
if (!user) {
|
||||
throw new Error(`No user '${stash.username}'`);
|
||||
console.warn(`No user '${stash.username}'`);
|
||||
return;
|
||||
}
|
||||
|
||||
const stashId = await getStashId(stash, user);
|
||||
|
||||
Reference in New Issue
Block a user