From 0a9d4869c7903d86c9e00033a48c5191d6a2e70d Mon Sep 17 00:00:00 2001 From: Thomas Lambertz Date: Mon, 14 Dec 2020 02:46:15 +0100 Subject: [PATCH] EN: change mime-type when exporting database to be microg specific --- .../microg/gms/nearby/exposurenotification/ExposureDatabase.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play-services-nearby-core/src/main/kotlin/org/microg/gms/nearby/exposurenotification/ExposureDatabase.kt b/play-services-nearby-core/src/main/kotlin/org/microg/gms/nearby/exposurenotification/ExposureDatabase.kt index f0bd9a4a..67107eae 100644 --- a/play-services-nearby-core/src/main/kotlin/org/microg/gms/nearby/exposurenotification/ExposureDatabase.kt +++ b/play-services-nearby-core/src/main/kotlin/org/microg/gms/nearby/exposurenotification/ExposureDatabase.kt @@ -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)