ソースを参照

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;
}


読み込み中…
キャンセル
保存