Feat/studio clock (#61)

* Studio Clock: broadcast change from integration
This commit is contained in:
Carlos Valente
2021-12-13 21:50:44 +01:00
committed by GitHub
parent 80c2e9a8ba
commit 3582ce18e1
3 changed files with 9 additions and 7 deletions
+4 -4
View File
@@ -38,11 +38,11 @@ export const initiateOSC = (config) => {
// get second part (command)
switch (path.toLowerCase()) {
case 'onAir':
global.timer.onAir = true;
case 'onair':
global.timer.setonAir(true);
break;
case 'offAir':
global.timer.onAir = false;
case 'offair':
global.timer.setonAir(false);
break;
case 'start':
case 'play':