v1.0.4: Fix tiptapToMarkdown JsonElement type casting

- tiptapToMarkdown used JsonObject.asMap() which returns Map<String, JsonElement>
- All 'as? String' casts silently failed (JsonPrimitive != String), returning empty
- Now uses Gson TypeToken<Map<String, Any?>> for proper raw type deserialization
- contentToMarkdown now handles Map types directly without serialize roundtrip
This commit is contained in:
2026-07-27 17:32:47 -06:00
parent 7be826f9ba
commit ae57a0bf09
2 changed files with 14 additions and 5 deletions

View File

@@ -20,8 +20,8 @@ android {
applicationId = "com.docmost.app"
minSdk = 26
targetSdk = 34
versionCode = 4
versionName = "1.0.3"
versionCode = 5
versionName = "1.0.4"
}
signingConfigs {