Skip to content

Commit f555452

Browse files
authored
refactor(android): Simplify preload call options handling (#111)
1 parent b5363a2 commit f555452

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

android/src/main/java/com/getcapacitor/community/audio/NativeAudio.java

+2-14
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,8 @@ public void dispatchComplete(String assetId) {
344344
}
345345

346346
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);
349349

350350
try {
351351
initSoundPool();
@@ -369,18 +369,6 @@ private void preloadAsset(PluginCall call) {
369369

370370
String fullPath = assetPath; //"raw/".concat(assetPath);
371371

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-
384372
AssetFileDescriptor assetFileDescriptor;
385373
if (isUrl) {
386374
File f = new File(new URI(fullPath));

0 commit comments

Comments
 (0)