fix: Show proper number in add to playlist dialog toast

This commit is contained in:
SinTan1729 2025-09-26 16:48:56 -05:00
parent e790bf3eb6
commit 9736890e3c
No known key found for this signature in database
GPG key ID: 0538DD402EA50898

View file

@ -87,7 +87,7 @@ public class PlaylistRepository {
.enqueue(new Callback<ApiResponse>() {
@Override
public void onResponse(@NonNull Call<ApiResponse> call, @NonNull Response<ApiResponse> response) {
Toast.makeText(App.getContext(), App.getContext().getString(R.string.playlist_chooser_dialog_toast_add_success), Toast.LENGTH_SHORT).show();
Toast.makeText(App.getContext(), App.getContext().getString(R.string.playlist_chooser_dialog_toast_add_success) + " x " + songsId.toArray().length, Toast.LENGTH_SHORT).show();
}
@Override