Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.9.0
668e5cf3e4744436c60f64abcfb130a80e76e9db

# Scala Steward: Reformat with scalafmt 3.10.1
b402e9e68072ff13b4431ceee373b90392713f7a
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.10.0"
version = "3.10.1"

preset = default
align.preset = some
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object DeleteMail {
FindMail(mh).andThen(opt =>
opt match {
case Some(msg) => delete(msg, mh)
case _ =>
case _ =>
logger.infoF(s"Cannot delete message '$mh', it was not found.") *> 0.pure[F]
}
)
Expand Down
2 changes: 1 addition & 1 deletion modules/jsoup/src/main/scala/emil/jsoup/HtmlBodyView.scala
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ object HtmlBodyView {
def mails(mas: List[MailAddress]): String =
mas match {
case Nil => "-"
case _ =>
case _ =>
mas
.map(_.displayString)
.map(Entities.escape)
Expand Down