We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b93e545 commit 45680d0Copy full SHA for 45680d0
src/main/java/org/digitalmediaserver/cast/Channel.java
@@ -2598,7 +2598,7 @@ public void run() {
2598
} else if ("PONG".equals(responseType)) {
2599
LOGGER.trace(CAST_API_HEARTBEAT_MARKER, "Received PONG from {}", remoteName);
2600
while (true) {
2601
- int current = pingCounter.get();
+ int current = pingCounter.get();//TODO: (Nad) Update Load and any other methods that returns MediaStatus
2602
int next = current - 1;
2603
if (next < 0) {
2604
LOGGER.warn(
0 commit comments