logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: a9e36e5a64017502689a65fb329a301e428ebfaf
parent: 46cc6fab078d153b705d841a555471dae102c70a
Author: lain <lain@soykaf.club>
Date:   Sat, 26 May 2018 21:06:46 +0200

Fix user topic streaming.

Diffstat:

Mlib/pleroma/web/streamer.ex2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pleroma/web/streamer.ex b/lib/pleroma/web/streamer.ex @@ -150,7 +150,7 @@ defmodule Pleroma.Web.Streamer do end) end - defp internal_topic(topic, socket) when topic in ~w[user, direct] do + defp internal_topic(topic, socket) when topic in ~w[user direct] do "#{topic}:#{socket.assigns[:user].id}" end