From 057dab988ca33aa5f2e46e5b510e05a860264f3c Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Sun, 4 Mar 2018 15:43:00 +0100 Subject: [PATCH] Minor changes --- pages/groups/groups.scarlet | 5 +++-- patches/notification-emails/notification-emails.go | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pages/groups/groups.scarlet b/pages/groups/groups.scarlet index 15f9184d..0aff5587 100644 --- a/pages/groups/groups.scarlet +++ b/pages/groups/groups.scarlet @@ -16,8 +16,9 @@ group-padding-x = 0.75rem color text-color :hover - color white - background-color rgb(60, 60, 60) + color theme-white + background-color theme-black + text-shadow none .group-image width 70px diff --git a/patches/notification-emails/notification-emails.go b/patches/notification-emails/notification-emails.go index 3c5f973e..2f441d32 100644 --- a/patches/notification-emails/notification-emails.go +++ b/patches/notification-emails/notification-emails.go @@ -10,7 +10,7 @@ func main() { defer arn.Node.Close() for user := range arn.StreamUsers() { - if user.Notifications().CountUnseen() <= 10 && !user.IsActive() && user.Email != "" && len(user.AnimeList().Items) > 0 { + if user.Notifications().CountUnseen() <= 10 && !user.IsActive() && user.Email != "" && len(user.AnimeList().Items) == 0 { fmt.Println(user.Email) } }