Merge branch 'main' into beta

This commit is contained in:
cmdr2 2022-09-09 21:31:48 +05:30
commit 28dfe2140c

View File

@ -967,6 +967,13 @@ promptStrengthField.addEventListener('input', updatePromptStrength)
updatePromptStrength()
useBetaChannelField.addEventListener('click', async function(e) {
if (serverStatus !== 'online') {
logError('The server is still starting up..')
alert('The server is still starting up..')
e.preventDefault()
return false
}
let updateBranch = (this.checked ? 'beta' : 'main')
try {