File tree Expand file tree Collapse file tree
app/src/main/java/org/schabi/newpipe/local/history Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,14 +60,14 @@ class HistoryFragment : Fragment() {
6060 .setNegativeButton(R .string.cancel) { dialog, which -> dialog.dismiss() }
6161 .setPositiveButton(R .string.delete) { dialog, which ->
6262 viewLifecycleOwner.lifecycleScope.launch {
63- launch(getExceptionHandler(" Clear orphaned records " )) {
63+ launch(getExceptionHandler(" Delete playback states " )) {
6464 recordManager.deleteCompleteStreamStateHistory().await()
6565 Toast
6666 .makeText(context, R .string.watch_history_states_deleted, Toast .LENGTH_SHORT )
6767 .show()
6868 }
6969
70- launch(getExceptionHandler(" Delete search history" )) {
70+ launch(getExceptionHandler(" Delete watch history" )) {
7171 recordManager.deleteWholeStreamHistory().await()
7272 Toast .makeText(context, R .string.watch_history_deleted, Toast .LENGTH_SHORT )
7373 .show()
You can’t perform that action at this time.
0 commit comments