forked from YokaiRick/akkoma
BBS: Some fixes.
This commit is contained in:
parent
e3bf6655ba
commit
629ad1766c
1 changed files with 3 additions and 3 deletions
|
@ -91,7 +91,7 @@ def handle_command(state, "home") do
|
|||
|
||||
params =
|
||||
%{}
|
||||
|> Map.put("type", ["Create", "Announce"])
|
||||
|> Map.put("type", ["Create"])
|
||||
|> Map.put("blocking_user", user)
|
||||
|> Map.put("muting_user", user)
|
||||
|> Map.put("user", user)
|
||||
|
@ -100,7 +100,6 @@ def handle_command(state, "home") do
|
|||
[user.ap_id | user.following]
|
||||
|> ActivityPub.fetch_activities(params)
|
||||
|> ActivityPub.contain_timeline(user)
|
||||
|> Enum.reverse()
|
||||
|
||||
Enum.each(activities, fn activity ->
|
||||
puts_activity(activity)
|
||||
|
@ -109,8 +108,9 @@ def handle_command(state, "home") do
|
|||
state
|
||||
end
|
||||
|
||||
def handle_command(_state, command) do
|
||||
def handle_command(state, command) do
|
||||
IO.puts("Unknown command '#{command}'")
|
||||
state
|
||||
end
|
||||
|
||||
defp wait_input(state, input) do
|
||||
|
|
Loading…
Reference in a new issue