diff options
author | trqx@goat.si <trqx@goat.si> | 2018-08-09 16:17:45 +0200 |
---|---|---|
committer | tx <trqx@goat.si> | 2018-08-10 10:45:44 +0200 |
commit | e7b00f202f717ca3c7ca2d624d6ad7d79f499ac6 (patch) | |
tree | 70ce295d93f67e591b9af4b4bc8c0f0ac79620f6 /lib | |
parent | 59b42531a3b01ab2a84a38b224f06146eb4bbc55 (diff) | |
download | pleroma-e7b00f202f717ca3c7ca2d624d6ad7d79f499ac6.tar.gz |
fix gopher server informational messages
some gopher clients did not accept those lines due to a missing tab
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/gopher/server.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/gopher/server.ex b/lib/pleroma/gopher/server.ex index f6abcd4d0..4bdd27959 100644 --- a/lib/pleroma/gopher/server.ex +++ b/lib/pleroma/gopher/server.ex @@ -54,7 +54,7 @@ defmodule Pleroma.Gopher.Server.ProtocolHandler do String.split(text, "\r") |> Enum.map(fn text -> - "i#{text}\tfake\(NULL)\t0\r\n" + "i#{text}\tfake\t(NULL)\t0\r\n" end) |> Enum.join("") end |