fix: logout removing client mode; fix: nickname not showing after app login

This commit is contained in:
Roberto Tonino
2020-09-23 18:36:10 +02:00
parent 0be64f1477
commit db1a0a5ec3
4 changed files with 9 additions and 8 deletions

View File

@@ -14,7 +14,6 @@ export async function adjustVolume(element, newVolume, { duration = 1000, easing
return new Promise(resolve => {
const timer = setInterval(() => {
element.volume = originalVolume + easing(tick / ticks) * delta
// console.log(element.volume)
if (++tick === ticks) {
clearInterval(timer)
resolve()