Skip to content

Commit

Permalink
Fix onAddQueueItemAt invokeMethod in AudioServicePlugin.java (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieJeong committed Feb 24, 2020
1 parent 5a89088 commit 97a10fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ public void onAddQueueItem(MediaMetadataCompat metadata) {
}
@Override
public void onAddQueueItemAt(MediaMetadataCompat metadata, int index) {
invokeMethod("onAddQueueItem", mediaMetadata2raw(metadata), index);
invokeMethod("onAddQueueItemAt", mediaMetadata2raw(metadata), index);
}
@Override
public void onRemoveQueueItem(MediaMetadataCompat metadata) {
Expand Down

0 comments on commit 97a10fd

Please sign in to comment.