소스 검색

Clock resumes PAUSED state whose reason starts with restartable names, instead of equal.

tags/channel_throttling_1
ymlam 1 년 전
부모
커밋
b94206d547
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/main/java/altk/comm/engine/Broadcast.java

+ 1
- 1
src/main/java/altk/comm/engine/Broadcast.java 파일 보기

@@ -1024,7 +1024,7 @@ public abstract class Broadcast
if (reason == ACTION_BY_CLOCK) {
boolean inAcceptqble = false;
for (String acceptable : getPauseModesResumableByClock()) {
if (this.reason.equalsIgnoreCase(acceptable)) inAcceptqble = true;
if (this.reason.startsWith(acceptable)) inAcceptqble = true;
}
if (!inAcceptqble) return null;
}


불러오는 중...
취소
저장