0
0
Fork 0
mirror of https://github.com/YTVanced/VancedMicroG synced 2024-12-03 16:27:26 +00:00

EN: change mime-type when exporting database to be microg specific

This commit is contained in:
Thomas Lambertz 2020-12-14 02:46:15 +01:00 committed by Marvin W
parent 4158e71999
commit 0a9d4869c7
No known key found for this signature in database
GPG key ID: 072E9235DB996F2A

View file

@ -1007,7 +1007,7 @@ class ExposureDatabase private constructor(private val context: Context) : SQLit
action = Intent.ACTION_SEND
putExtra(Intent.EXTRA_STREAM, fileUri)
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
type = "application/vnd.sqlite3"
type = "application/vnd.microg.exposure+sqlite3"
}
val shareIntent = Intent.createChooser(sendIntent, null)