Fix never released activating_source
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
24342f5062
commit
0fd9baaf71
@ -4,12 +4,15 @@
|
||||
let activating_source = null;
|
||||
async function clickSource(src) {
|
||||
activating_source = src.id;
|
||||
if (src.enabled) {
|
||||
await src.deactivate();
|
||||
await sources.refresh();
|
||||
} else {
|
||||
await src.activate();
|
||||
await sources.refresh();
|
||||
try {
|
||||
if (src.enabled) {
|
||||
await src.deactivate();
|
||||
await sources.refresh();
|
||||
} else {
|
||||
await src.activate();
|
||||
await sources.refresh();
|
||||
}
|
||||
} catch {
|
||||
}
|
||||
activating_source = null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user