Skip to content

Commit

Permalink
Debugging client stream relay code.
Browse files Browse the repository at this point in the history
git-svn-id: http://red5.googlecode.com/svn/java/server/trunk@4350 1b6495e4-3631-0410-8e05-8f51eee8b9cc
  • Loading branch information
mondain committed May 14, 2012
1 parent 0ef8901 commit f7719ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/red5/server/net/rtmp/BaseRTMPHandler.java
Expand Up @@ -248,7 +248,7 @@ protected void handlePendingCallResult(RTMPConnection conn, Notify invoke) {
if (pendingCall != null) {
// The client sent a response to a previously made call.
Object[] args = call.getArguments();
if ((args != null) && (args.length > 0)) {
if (args != null && args.length > 0) {
// TODO: can a client return multiple results?
pendingCall.setResult(args[0]);
}
Expand Down

0 comments on commit f7719ee

Please sign in to comment.