This commit is contained in:
2026-07-29 20:53:22 +03:00
parent 98976cb3f5
commit 12ad115720
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ android {
applicationId = namespace
minSdk = libs.versions.proj.min.get().toInt()
targetSdk = libs.versions.proj.target.get().toInt()
versionCode = 45
versionName = "1.24.1"
versionCode = 46
versionName = "1.24.2"
}
}
@@ -6,7 +6,7 @@ import ru.shadowsparky.chat.domain.TextToken
@Factory
class MovieTextParser : ChatTextParser {
private val regex = Regex("\\[MOVIE\\](.*?)\\[/MOVIE\\]")
private val regex = Regex("\\*\\*(.*?)\\*\\*")
override fun parse(content: String): List<TextToken> {
val tokens = mutableListOf<TextToken>()