Skip to content

Commit

Permalink
fix: Adding to playing not working
Browse files Browse the repository at this point in the history
  • Loading branch information
Losses committed Nov 26, 2024
1 parent 3dca3b9 commit b8ab31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/api/add_item_to_playlist.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Future<void> addItemToPlaylist(int playlistId, int itemId,
[int? position]) async {
final request = AddItemToPlaylistRequest(
playlistId: playlistId,
mediaFileId: playlistId,
mediaFileId: itemId,
position: position,
);
request.sendSignalToRust(); // GENERATED
Expand Down

0 comments on commit b8ab31e

Please sign in to comment.