Don't pass MIME type along when selecting icon pack file to import

Fixes #757
This commit is contained in:
Alexander Bakker 2022-03-06 13:54:14 +01:00
parent 6d8a8c066c
commit 6f66706685

View file

@ -150,7 +150,7 @@ public class IconPacksManagerFragment extends Fragment implements IconPackAdapte
private void startImportIconPack() {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("application/zip");
intent.setType("*/*");
_vaultManager.startActivityForResult(this, intent, CODE_IMPORT);
}