Skip to content

Commit

Permalink
Fixed SETUP bug for some rare RTSP cameras
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyvasilyev committed Jan 7, 2025
1 parent 23c3652 commit 2911e41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {
ext.compile_sdk_version = 35
ext.min_sdk_version = 24
ext.target_sdk_version = 35
ext.project_version_code = 533
ext.project_version_name = '5.3.3'
ext.project_version_code = 534
ext.project_version_name = '5.3.4'

repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ private static String getUriForSetup(@NonNull String uriRtsp, @Nullable Track tr
}
uriRtspSetup += track.request;
}
return uriRtspSetup;
return uriRtspSetup.trim();
}

private static void checkExitFlag(@NonNull AtomicBoolean exitFlag) throws InterruptedException {
Expand Down

0 comments on commit 2911e41

Please sign in to comment.