forked from AkkomaGang/akkoma
Fix hashtags WebSocket streaming
This commit is contained in:
parent
802b991814
commit
fffc382f13
2 changed files with 5 additions and 5 deletions
|
@ -39,7 +39,7 @@ defp visibility_tags(object, activity) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
defp item_creation_tags(tags, %{data: %{"type" => "Create"}} = object, activity) do
|
defp item_creation_tags(tags, object, %{data: %{"type" => "Create"}} = activity) do
|
||||||
tags ++ hashtags_to_topics(object) ++ attachment_topics(object, activity)
|
tags ++ hashtags_to_topics(object) ++ attachment_topics(object, activity)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -59,8 +59,8 @@ test "non-local action does not produce public:local topic", %{activity: activit
|
||||||
describe "public visibility create events" do
|
describe "public visibility create events" do
|
||||||
setup do
|
setup do
|
||||||
activity = %Activity{
|
activity = %Activity{
|
||||||
object: %Object{data: %{"type" => "Create", "attachment" => []}},
|
object: %Object{data: %{"attachment" => []}},
|
||||||
data: %{"to" => [Pleroma.Constants.as_public()]}
|
data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]}
|
||||||
}
|
}
|
||||||
|
|
||||||
{:ok, activity: activity}
|
{:ok, activity: activity}
|
||||||
|
@ -98,8 +98,8 @@ test "only converts strinngs to hash tags", %{
|
||||||
describe "public visibility create events with attachments" do
|
describe "public visibility create events with attachments" do
|
||||||
setup do
|
setup do
|
||||||
activity = %Activity{
|
activity = %Activity{
|
||||||
object: %Object{data: %{"type" => "Create", "attachment" => ["foo"]}},
|
object: %Object{data: %{"attachment" => ["foo"]}},
|
||||||
data: %{"to" => [Pleroma.Constants.as_public()]}
|
data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]}
|
||||||
}
|
}
|
||||||
|
|
||||||
{:ok, activity: activity}
|
{:ok, activity: activity}
|
||||||
|
|
Loading…
Reference in a new issue