fix: Reverted old toast while adding to playlist

This commit is contained in:
SinTan1729 2025-10-06 21:50:00 -05:00
parent 47a0def06c
commit cd8b06f544
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) + " x " + songsId.toArray().length, Toast.LENGTH_SHORT).show();
Toast.makeText(App.getContext(), App.getContext().getString(R.string.playlist_chooser_dialog_toast_add_success), Toast.LENGTH_SHORT).show();
}
@Override