From 325ec17e313b4620b9899b50bbb0ad153b678503 Mon Sep 17 00:00:00 2001 From: mmvpm Date: Thu, 9 May 2024 19:54:48 +0300 Subject: [PATCH] fmt --- bot/src/main/scala/com/github/mmvpm/bot/OfferServiceBot.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/src/main/scala/com/github/mmvpm/bot/OfferServiceBot.scala b/bot/src/main/scala/com/github/mmvpm/bot/OfferServiceBot.scala index a1a7789..de455b1 100644 --- a/bot/src/main/scala/com/github/mmvpm/bot/OfferServiceBot.scala +++ b/bot/src/main/scala/com/github/mmvpm/bot/OfferServiceBot.scala @@ -150,7 +150,7 @@ class OfferServiceBot[F[_]: Concurrent]( private def withoutError(state: State): State = state match { case Error(returnTo, _) => returnTo - case _ => state + case _ => state } private def safe[A](block: => A, default: A): A =