mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
s/exoport/export
This commit is contained in:
parent
6a30867fd4
commit
4ea9348a97
2 changed files with 3 additions and 3 deletions
|
@ -664,7 +664,7 @@ public class SecureSMS extends ListActivity {
|
||||||
public void run() {
|
public void run() {
|
||||||
try {
|
try {
|
||||||
switch (task) {
|
switch (task) {
|
||||||
case TASK_EXPORT: ApplicationExporter.exoprtToSd(SecureSMS.this); break;
|
case TASK_EXPORT: ApplicationExporter.exportToSd(SecureSMS.this); break;
|
||||||
case TASK_IMPORT: ApplicationExporter.importFromSd(SecureSMS.this); break;
|
case TASK_IMPORT: ApplicationExporter.importFromSd(SecureSMS.this); break;
|
||||||
}
|
}
|
||||||
} catch (NoExternalStorageException e) {
|
} catch (NoExternalStorageException e) {
|
||||||
|
@ -928,4 +928,4 @@ public class SecureSMS extends ListActivity {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@ public class ApplicationExporter {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void exoprtToSd(Context context) throws NoExternalStorageException, IOException {
|
public static void exportToSd(Context context) throws NoExternalStorageException, IOException {
|
||||||
verifyExternalStorageForExport();
|
verifyExternalStorageForExport();
|
||||||
exportDirectory(context, "");
|
exportDirectory(context, "");
|
||||||
// exportDirectory(context, "databases");
|
// exportDirectory(context, "databases");
|
||||||
|
|
Loading…
Reference in a new issue