Skip to content

Commit

Permalink
Use correct type for songIds argument of setSongsFavorite (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abestanis authored Jul 13, 2024
1 parent 7b787a0 commit 3c5e376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class SweyerPlugin : FlutterPlugin, MethodCallHandler, ActivityAware, ActivityRe
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
this.result = result
val value = call.argument<Boolean>("value")!!
val songIds = call.argument<ArrayList<ArrayList<Any>>>("songIds")!!
val songIds = call.argument<ArrayList<Any>>("songIds")!!
val uris = ArrayList<Uri>()
for (songId in songIds) {
val id = getLong(songId)
Expand Down

0 comments on commit 3c5e376

Please sign in to comment.