Skip to content

Commit

Permalink
Fix issue #93
Browse files Browse the repository at this point in the history
  • Loading branch information
Anggrayudi Hardiannico committed Jul 23, 2022
1 parent 193adb5 commit c8e74ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ android.enableJetifier=true
kotlin.code.style=official
GROUP=com.anggrayudi
POM_ARTIFACT_ID=storage
VERSION_NAME=1.4.0-SNAPSHOT
VERSION_NAME=1.4.1-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ class SimpleStorage private constructor(private val wrapper: ComponentWrapper) {
fun onSaveInstanceState(outState: Bundle) {
outState.putString(KEY_LAST_VISITED_FOLDER, lastVisitedFolder.path)
outState.putString(KEY_EXPECTED_BASE_PATH_FOR_ACCESS_REQUEST, expectedBasePathForAccessRequest)
outState.putInt(KEY_REQUEST_CODE_STORAGE_ACCESS, expectedStorageTypeForAccessRequest.ordinal)
outState.putInt(KEY_EXPECTED_STORAGE_TYPE_FOR_ACCESS_REQUEST, expectedStorageTypeForAccessRequest.ordinal)
outState.putInt(KEY_REQUEST_CODE_STORAGE_ACCESS, requestCodeStorageAccess)
outState.putInt(KEY_REQUEST_CODE_FOLDER_PICKER, requestCodeFolderPicker)
outState.putInt(KEY_REQUEST_CODE_FILE_PICKER, requestCodeFilePicker)
Expand Down

0 comments on commit c8e74ee

Please sign in to comment.