2 Commits

1 changed files with 5 additions and 1 deletions
Unified View
  1. +5
    -1
      src/main/java/altk/comm/engine/Broadcast.java

+ 5
- 1
src/main/java/altk/comm/engine/Broadcast.java View File

@@ -1024,7 +1024,7 @@ public abstract class Broadcast
if (reason == ACTION_BY_CLOCK) { if (reason == ACTION_BY_CLOCK) {
boolean inAcceptqble = false; boolean inAcceptqble = false;
for (String acceptable : getPauseModesResumableByClock()) { for (String acceptable : getPauseModesResumableByClock()) {
if (this.reason.equalsIgnoreCase(acceptable)) inAcceptqble = true;
if (this.reason.startsWith(acceptable)) inAcceptqble = true;
} }
if (!inAcceptqble) return null; if (!inAcceptqble) return null;
} }
@@ -1502,5 +1502,9 @@ public abstract class Broadcast
job.setErrorText(errorText); job.setErrorText(errorText);
return true; return true;
} }
public String getChannelName() {
return (String)channel_json.get("name");
}


} }

Loading…
Cancel
Save