Skip to content

Commit

Permalink
5.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyvasilyev committed Nov 18, 2024
1 parent d761af9 commit c8c73d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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 = 530
ext.project_version_name = '5.3.0'
ext.project_version_code = 531
ext.project_version_name = '5.3.1'

repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -975,9 +975,9 @@ private static Track[] getTracksFromDescribeParams(@NonNull List<Pair<String, St
if (currentTrack != null) {
// m=<media> <port>/<number of ports> <proto> <fmt> ...
String[] values = TextUtils.split(param.second, " ");
try{
try {
currentTrack.payloadType = (values.length > 3 ? Integer.parseInt(values[3]) : -1);
}catch (Exception e){
} catch (Exception e) {
currentTrack.payloadType = -1;
}
if (currentTrack.payloadType == -1)
Expand Down

0 comments on commit c8c73d9

Please sign in to comment.