diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-17 14:37:17 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-17 14:37:17 +0100 |
commit | 0bcf34ea3d7819c7d63a14bfb4def500b3a16e86 (patch) | |
tree | 674bfe8127d088af9343a264035286cb0e17e3aa /bin | |
parent | 4fc4fe8dba013523e021674e4fa0cb4aa0e94163 (diff) | |
download | istreamdev-0bcf34ea3d7819c7d63a14bfb4def500b3a16e86.tar.gz istreamdev-0bcf34ea3d7819c7d63a14bfb4def500b3a16e86.tar.bz2 |
Dont resend the same status
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/backend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/backend.php b/bin/backend.php index 49c2c66..dcb79e9 100755 --- a/bin/backend.php +++ b/bin/backend.php @@ -76,7 +76,7 @@ switch ($action) $status = getStreamStatus($session); $statusdec = json_decode($status); - if (($statusdec->message != prevmsg) || ($statusdec->status == "ready")) + if (($statusdec->message != $prevmsg) || ($statusdec->status == "ready")) { print $status; break; |