[API/Edudziennik] Fix grades colors.

This commit is contained in:
Kacper Ziubryniewicz 2020-01-08 21:12:10 +01:00
parent 53675122c6
commit ea5720d1c8

View File

@ -8,7 +8,7 @@ import kotlin.text.RegexOption.DOT_MATCHES_ALL
object Regexes {
val STYLE_CSS_COLOR by lazy {
"""color: \w+?;?"?""".toRegex()
"""color: (\w+);?""".toRegex()
}