diff options
| author | 2023-05-31 23:58:01 +0200 | |
|---|---|---|
| committer | 2023-06-03 00:06:06 -0700 | |
| commit | 401076427998d635bad45ac5f1472d70c29608f1 (patch) | |
| tree | f6ae49a5c1dff49086e29fe060c85d4f79ffc6f1 /src | |
| parent | Check if folder exists before letting the user import/export saves (diff) | |
| download | yuzu-401076427998d635bad45ac5f1472d70c29608f1.tar.gz yuzu-401076427998d635bad45ac5f1472d70c29608f1.tar.xz yuzu-401076427998d635bad45ac5f1472d70c29608f1.zip | |
Remove `?.`
Diffstat (limited to 'src')
| -rw-r--r-- | src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt index f623a4e1e..cf37838f9 100644 --- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt +++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/fragments/ImportExportSavesFragment.kt | |||
| @@ -162,7 +162,7 @@ class ImportExportSavesFragment : DialogFragment() { | |||
| 162 | val file = DocumentFile.fromSingleUri( | 162 | val file = DocumentFile.fromSingleUri( |
| 163 | context, DocumentsContract.buildDocumentUri( | 163 | context, DocumentsContract.buildDocumentUri( |
| 164 | DocumentProvider.AUTHORITY, | 164 | DocumentProvider.AUTHORITY, |
| 165 | "${DocumentProvider.ROOT_ID}/temp/${lastZipCreated?.name}" | 165 | "${DocumentProvider.ROOT_ID}/temp/${lastZipFile.name}" |
| 166 | ) | 166 | ) |
| 167 | )!! | 167 | )!! |
| 168 | val intent = Intent(Intent.ACTION_SEND) | 168 | val intent = Intent(Intent.ACTION_SEND) |