Skip to content

Commit

Permalink
fix rtmp FCPublish error
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroSG94 committed Nov 6, 2023
1 parent c1b2b8d commit 56d872a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rtmp/src/main/java/com/pedro/rtmp/rtmp/RtmpClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -430,8 +430,9 @@ class RtmpClient(private val connectCheckerRtmp: ConnectCheckerRtmp) {
}
}
}
"releaseStream" -> { //we can ignore this error. Few servers fail if this stream is not in use
Log.e(TAG, "releaseStream failed: $description")
//We can ignore this errors. Some servers fail if this stream is not in use or don't implement this methods.
"releaseStream", "FCPublish" -> {
Log.e(TAG, "$commandName failed: $description")
}
else -> {
onMainThread {
Expand Down

0 comments on commit 56d872a

Please sign in to comment.