From 893de4f5c0e852fac9a73e0c0243bc038af75f17 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 25 Feb 2020 21:35:57 +0100 Subject: identity: bring back the login to hold that info from bridges (purely informational) --- cache/filter.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cache/filter.go') diff --git a/cache/filter.go b/cache/filter.go index f840067b..ebe774ac 100644 --- a/cache/filter.go +++ b/cache/filter.go @@ -44,7 +44,8 @@ func AuthorFilter(query string) Filter { } // Legacy identity support - return strings.Contains(strings.ToLower(excerpt.LegacyAuthor.Name), query) + return strings.Contains(strings.ToLower(excerpt.LegacyAuthor.Name), query) || + strings.Contains(strings.ToLower(excerpt.LegacyAuthor.Login), query) } } -- cgit