Added the number of duplicates to the toast text.
This commit is contained in:
parent
5fb7b3266b
commit
b3554a6a49
2 changed files with 2 additions and 2 deletions
|
|
@ -181,7 +181,7 @@ public final class PlaylistAppendDialog extends PlaylistDialog {
|
|||
String toastText = getString(R.string.playlist_add_stream_success);
|
||||
|
||||
if (numOfDuplicates > 0) {
|
||||
toastText = getString(R.string.playlist_add_stream_success_duplicate);
|
||||
toastText = getString(R.string.playlist_add_stream_success_duplicate, numOfDuplicates);
|
||||
}
|
||||
|
||||
final Toast successToast = Toast.makeText(getContext(), toastText, Toast.LENGTH_SHORT);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue