logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 39c47073a3c6fd3da068d5a4c9def18f3847ff32
parent e606b9ab3f5028ddac1f52e855d7f6da4999dbc5
Author: duponin <pwet@dupon.in>
Date:   Wed, 18 May 2022 20:06:16 +0200

fix Ctrl-c catch on SSH BBS

Diffstat:

Mlib/pleroma/bbs/handler.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/bbs/handler.ex b/lib/pleroma/bbs/handler.ex @@ -123,7 +123,7 @@ defmodule Pleroma.BBS.Handler do loop(%{state | counter: state.counter + 1}) - {:error, :interrupted} -> + {:input, ^input, {:error, :interrupted}} -> IO.puts("Caught Ctrl+C...") loop(%{state | counter: state.counter + 1})