A cheap attempt at a native Bluesky client for Android

Models: a post is never a reply if it doesn't have a parent, duh

+4
+4
app/src/main/java/industries/geesawra/monarch/datalayer/Models.kt
··· 77 77 val (parent, _) = sd.parent() 78 78 val root = sd.root() 79 79 80 + if (parent == null) { 81 + false // simple posts, reposts etc should always go through 82 + } 83 + 80 84 val parentFollowing = parent?.following ?: false 81 85 val rootFollowing = root?.following ?: false 82 86