Check for M_USER_IN_USE in seed.js
This commit is contained in:
parent
2df7c665cb
commit
4dcdd0287e
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ async function uploadAutoEmoji(guild, name, filename) {
|
||||||
try {
|
try {
|
||||||
await api.register(reg.sender_localpart)
|
await api.register(reg.sender_localpart)
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (e.data?.error !== "Internal server error") throw e // "Internal server error" is the only OK error because Synapse says this if you try to register the same username twice.
|
if (e.errcode === "M_USER_IN_USE" || e.data?.error !== "Internal server error") throw e // "Internal server error" is the only OK error because Synapse says this if you try to register the same username twice.
|
||||||
}
|
}
|
||||||
|
|
||||||
// upload initial images...
|
// upload initial images...
|
||||||
|
|
Loading…
Reference in a new issue