TimelineController: Do not order hashtag timelines for now.

This commit is contained in:
lain 2020-01-15 12:41:25 +01:00
parent 167e9c45ec
commit 9ae24fc68e
2 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Store status data inside Flag activity
- Deprecated (reorganized as `UserRelationship` entity) User fields with user AP IDs (`blocks`, `mutes`, `muted_reblogs`, `muted_notifications`, `subscribers`).
- Logger: default log level changed from `warn` to `info`.
- Hashtag timelines: This is now unsorted, which fixes most timeouts.
<details>
<summary>API Changes</summary>

View File

@ -105,6 +105,8 @@ defmodule Pleroma.Web.MastodonAPI.TimelineController do
|> Map.put("tag", tags)
|> Map.put("tag_all", tag_all)
|> Map.put("tag_reject", tag_reject)
# Temporary fix until we get a proper solution in
|> Map.put("skip_order", true)
|> ActivityPub.fetch_public_activities()
end