File tree 1 file changed +2
-14
lines changed
android/src/main/java/com/getcapacitor/community/audio
1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -344,8 +344,8 @@ public void dispatchComplete(String assetId) {
344
344
}
345
345
346
346
private void preloadAsset (PluginCall call ) {
347
- double volume = 1.0 ;
348
- int audioChannelNum = 1 ;
347
+ double volume = call . getDouble ( VOLUME , 1.0 ) ;
348
+ int audioChannelNum = call . getInt ( AUDIO_CHANNEL_NUM , 1 ) ;
349
349
350
350
try {
351
351
initSoundPool ();
@@ -369,18 +369,6 @@ private void preloadAsset(PluginCall call) {
369
369
370
370
String fullPath = assetPath ; //"raw/".concat(assetPath);
371
371
372
- if (call .getDouble (VOLUME ) == null ) {
373
- volume = 1.0 ;
374
- } else {
375
- volume = call .getDouble (VOLUME , 0.5 );
376
- }
377
-
378
- if (call .getInt (AUDIO_CHANNEL_NUM ) == null ) {
379
- audioChannelNum = 1 ;
380
- } else {
381
- audioChannelNum = call .getInt (AUDIO_CHANNEL_NUM );
382
- }
383
-
384
372
AssetFileDescriptor assetFileDescriptor ;
385
373
if (isUrl ) {
386
374
File f = new File (new URI (fullPath ));
You can’t perform that action at this time.
0 commit comments