Fixed typos
This commit is contained in:
parent
f78983b16b
commit
68e7fcf8ee
7 changed files with 10 additions and 10 deletions
|
|
@ -692,7 +692,7 @@ public class DownloadDialog extends DialogFragment
|
|||
try {
|
||||
launcher.launch(StoredDirectoryHelper.getPicker(context));
|
||||
} 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());
|
||||
}
|
||||
}
|
||||
|
|
@ -777,7 +777,7 @@ public class DownloadDialog extends DialogFragment
|
|||
requestDownloadSaveAsLauncher.launch(StoredFileHelper.getNewPicker(context,
|
||||
filenameTmp, mimeTmp, initialPath));
|
||||
} 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());
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@ class SubscriptionFragment : BaseStateFragment<SubscriptionState>() {
|
|||
try {
|
||||
requestImportLauncher.launch(StoredFileHelper.getPicker(activity, JSON_MIME_TYPE))
|
||||
} catch (aex: ActivityNotFoundException) {
|
||||
Log.w(TAG, "Unable to launch file-picker", aex)
|
||||
Log.w(TAG, "Unable to launch file picker", aex)
|
||||
NoFileManagerHelper.showActivityNotFoundAlert(context)
|
||||
}
|
||||
}
|
||||
|
|
@ -199,7 +199,7 @@ class SubscriptionFragment : BaseStateFragment<SubscriptionState>() {
|
|||
StoredFileHelper.getNewPicker(activity, exportName, JSON_MIME_TYPE, null)
|
||||
)
|
||||
} catch (aex: ActivityNotFoundException) {
|
||||
Log.w(TAG, "Unable to launch file-picker", aex)
|
||||
Log.w(TAG, "Unable to launch file picker", aex)
|
||||
NoFileManagerHelper.showActivityNotFoundAlert(context)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@ public class SubscriptionsImportFragment extends BaseFragment {
|
|||
// with different mime types and file extensions
|
||||
requestImportFileLauncher.launch(StoredFileHelper.getPicker(activity, "*/*"));
|
||||
} 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());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -266,7 +266,7 @@ public class MissionsFragment extends Fragment {
|
|||
StoredFileHelper.getNewPicker(mContext, mission.storage.getName(),
|
||||
mission.storage.getType(), initialPath));
|
||||
} 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());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue