Skip to content

Commit

Permalink
fix: Github release regex for link
Browse files Browse the repository at this point in the history
  • Loading branch information
cuong-tran committed Nov 14, 2024
1 parent 7a0d064 commit b27ee21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/src/main/java/tachiyomi/data/release/GithubRelease.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ val gitHubUsernameMentionRegex =
* to: [komikku-app/[email protected]](https://github.com/komikku-app/komikku/compare/23d862d17...48fb4a2e6)
*/
val gitHubCommitsCompareRegex =
"""(\[[^]+]]\()?https://github.com/(?<owner>[^/]+)/(?<repo>[^/]+)/compare/(?<from>[0-9a-f.rv]+)\.\.\.(?<to>[0-9a-f.rv]+)\)?"""
"""(\[[^]]+]\()?https://github.com/(?<owner>[^/]+)/(?<repo>[^/]+)/compare/(?<from>[0-9a-f.rv]+)\.\.\.(?<to>[0-9a-f.rv]+)\)?"""
.toRegex(RegexOption.IGNORE_CASE)
// KMK <--

Expand Down

0 comments on commit b27ee21

Please sign in to comment.