Skip to content

Commit

Permalink
Open user notes by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kraktus authored and niklasf committed Dec 11, 2021
1 parent 8e64632 commit 4df390e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/irc/src/main/IrcApi.scala
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ object IrcApi {
private object markdown {
def link(url: String, name: String) = s"[$name]($url)"
def lichessLink(path: String, name: String) = s"[$name](https://lichess.org$path)"
def userLink(name: String): String = lichessLink(s"/@/$name?mod", name)
def userLink(name: String): String = lichessLink(s"/@/$name?mod&notes", name)
def userLink(user: User): String = userLink(user.username)
def modLink(name: String): String = lichessLink(s"/@/$name", name)
def modLink(user: User): String = modLink(user.username)
Expand Down

0 comments on commit 4df390e

Please sign in to comment.