Skip to content

Commit

Permalink
VLC long position
Browse files Browse the repository at this point in the history
  • Loading branch information
michael committed Sep 28, 2024
1 parent 56eb001 commit d92fc4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (data.hasExtra(API_MX_RESULT_POSITION)) {
pos = data.getIntExtra(API_MX_RESULT_POSITION, 0);
} else if (data.hasExtra(API_VLC_RESULT_POSITION)) {
pos = data.getIntExtra(API_VLC_RESULT_POSITION, 0);
pos = (int) data.getLongExtra(API_VLC_RESULT_POSITION, 0);
} else if (data.hasExtra(API_VIMU_RESULT_POSITION)) {
pos = data.getIntExtra(API_VIMU_RESULT_POSITION, 0);
}
Expand Down

0 comments on commit d92fc4d

Please sign in to comment.