Fixed typos

This commit is contained in:
litetex 2021-11-27 23:39:17 +01:00
parent 9285958b4f
commit 273e0e7f06
7 changed files with 10 additions and 10 deletions

View file

@ -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)
}
}

View file

@ -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());
}
}