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) } }