Fixed typos

This commit is contained in:
litetex 2021-11-27 23:39:17 +01:00
parent f78983b16b
commit 68e7fcf8ee
7 changed files with 10 additions and 10 deletions

View file

@ -80,7 +80,7 @@ public class ContentSettingsFragment extends BasePreferenceFragment {
StoredFileHelper.getPicker(requireContext(),
ZIP_MIME_TYPE, getImportExportDataUri()));
} catch (final ActivityNotFoundException aex) {
Log.w(TAG, "Unable to launch file-picker", aex);
Log.w(TAG, "Unable to launch file picker", aex);
NoFileManagerHelper.showActivityNotFoundAlert(getContext());
}
return true;
@ -95,7 +95,7 @@ public class ContentSettingsFragment extends BasePreferenceFragment {
"NewPipeData-" + exportDateFormat.format(new Date()) + ".zip",
ZIP_MIME_TYPE, getImportExportDataUri()));
} catch (final ActivityNotFoundException aex) {
Log.w(TAG, "Unable to launch file-picker", aex);
Log.w(TAG, "Unable to launch file picker", aex);
NoFileManagerHelper.showActivityNotFoundAlert(getContext());
}
return true;

View file

@ -219,7 +219,7 @@ public class DownloadSettingsFragment extends BasePreferenceFragment {
try {
launcher.launch(StoredDirectoryHelper.getPicker(ctx));
} catch (final ActivityNotFoundException aex) {
Log.w(TAG, "Unable to launch directory-picker", aex);
Log.w(TAG, "Unable to launch directory picker", aex);
NoFileManagerHelper.showActivityNotFoundAlert(getContext());
}
}