Browse Source

Merge branch 'fix/hashtags-streaming' into 'develop'

Fix hashtags WebSocket streaming

Closes #1593

See merge request pleroma/pleroma!2294
fix/1604-emoji-path
rinpatch 4 years ago
parent
commit
994ac4357c
2 changed files with 5 additions and 5 deletions
  1. +1
    -1
      lib/pleroma/activity/ir/topics.ex
  2. +4
    -4
      test/activity/ir/topics_test.exs

+ 1
- 1
lib/pleroma/activity/ir/topics.ex View File

@@ -39,7 +39,7 @@ defmodule Pleroma.Activity.Ir.Topics do
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)
end



+ 4
- 4
test/activity/ir/topics_test.exs View File

@@ -59,8 +59,8 @@ defmodule Pleroma.Activity.Ir.TopicsTest do
describe "public visibility create events" do
setup do
activity = %Activity{
object: %Object{data: %{"type" => "Create", "attachment" => []}},
data: %{"to" => [Pleroma.Constants.as_public()]}
object: %Object{data: %{"attachment" => []}},
data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]}
}

{:ok, activity: activity}
@@ -98,8 +98,8 @@ defmodule Pleroma.Activity.Ir.TopicsTest do
describe "public visibility create events with attachments" do
setup do
activity = %Activity{
object: %Object{data: %{"type" => "Create", "attachment" => ["foo"]}},
data: %{"to" => [Pleroma.Constants.as_public()]}
object: %Object{data: %{"attachment" => ["foo"]}},
data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]}
}

{:ok, activity: activity}


Loading…
Cancel
Save