Skip to content

Commit

Permalink
Fix icon URL regex
Browse files Browse the repository at this point in the history
  • Loading branch information
gdude2002 committed May 7, 2023
1 parent 8b98317 commit 4830087
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import kotlin.time.Duration.Companion.seconds
private const val TOOLCHAIN_LOGO: String =
"https://raw.githubusercontent.com/QuiltMC/art/master/brand/512png/quilt_toolchain_logo_dark.png"

private val ICON_URL_REGEX = Regex("(?:^|\n)Icon URL:([^\n])")
private val ICON_URL_REGEX = Regex("(?:^|\n)Icon URL:([^\n]+)")

class ForumExtension : Extension() {
override val name: String = "forum"
Expand Down

0 comments on commit 4830087

Please sign in to comment.