Fix #724
This commit is contained in:
parent
69e6d52fcf
commit
0c4ae81406
1 changed files with 5 additions and 1 deletions
|
@ -142,7 +142,11 @@ fun DatabaseSettings() {
|
|||
onClick = {
|
||||
try {
|
||||
restoreLauncher.launch(
|
||||
arrayOf("application/vnd.sqlite3", "application/octet-stream")
|
||||
arrayOf(
|
||||
"application/vnd.sqlite3",
|
||||
"application/x-sqlite3",
|
||||
"application/octet-stream"
|
||||
)
|
||||
)
|
||||
} catch (e: ActivityNotFoundException) {
|
||||
context.toast("Couldn't find an application to open documents")
|
||||
|
|
Loading…
Reference in a new issue