From 663070cf2af2e933c73cf2ebe500c13928e29804 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Tue, 13 Mar 2018 18:37:54 +0100 Subject: [PATCH] Improved anime history --- pages/editanime/history.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/editanime/history.go b/pages/editanime/history.go index f28a75ba..95033368 100644 --- a/pages/editanime/history.go +++ b/pages/editanime/history.go @@ -20,7 +20,7 @@ func History(ctx *aero.Context) string { } entries := arn.FilterEditLogEntries(func(entry *arn.EditLogEntry) bool { - return entry.ObjectType == "Anime" && entry.ObjectID == id + return entry.ObjectID == id && (entry.ObjectType == "Anime" || entry.ObjectType == "AnimeCharacters" || entry.ObjectType == "AnimeRelations" || entry.ObjectType == "AnimeEpisodes") }) arn.SortEditLogEntriesLatestFirst(entries)