diff --git a/Catalogger.Backend/Bot/Responders/Members/GuildMemberAddResponder.cs b/Catalogger.Backend/Bot/Responders/Members/GuildMemberAddResponder.cs
index 855affd..b873efe 100644
--- a/Catalogger.Backend/Bot/Responders/Members/GuildMemberAddResponder.cs
+++ b/Catalogger.Backend/Bot/Responders/Members/GuildMemberAddResponder.cs
@@ -126,7 +126,7 @@ public class GuildMemberAddResponder(
goto afterInvite;
}
- var inviteName = inviteRepository.GetInviteNameAsync(member.GuildID, usedInvite.Code);
+ var inviteName = await inviteRepository.GetInviteNameAsync(member.GuildID, usedInvite.Code);
var inviteDescription = $"""
**Code:** {usedInvite.Code}
diff --git a/Catalogger.Frontend/src/routes/+page.svelte b/Catalogger.Frontend/src/routes/+page.svelte
index f0bed2a..8d3fa9f 100644
--- a/Catalogger.Frontend/src/routes/+page.svelte
+++ b/Catalogger.Frontend/src/routes/+page.svelte
@@ -4,6 +4,7 @@
import type { PageData } from "./$types";
import { Button, ButtonGroup } from "@sveltestrap/sveltestrap";
import Message from "./Message.svelte";
+ import Screenshot from "./Screenshot.svelte";
export let data: PageData;
@@ -68,3 +69,60 @@
{:else}
No news right now.
{/each}
+
+
+
+
+
+ Catalogger will ignore the deleted messages caused by proxying, while adding
+ extra data to the proxied messages themselves.
+
+
+ You can easily configure Catalogger with its slash commands, or with the
+ dashboard (you're there right now!)
+
+
+ When banning a user, Catalogger will warn you if they have a linked
+ PluralKit system, and notify you if another account linked to the same
+ system joins.
+
+
+ When members join your server, Catalogger will list the invite they used,
+ their PluralKit system, and whether their system has been banned before. You
+ can also add users to a watchlist, and Catalogger will send a warning when
+ they join.
+
+
+ Catalogger can log edited messages too, and ignore the pk;edit
+ messages that made the edits. Of course, this also shows the system
+ and member that sent the message.
+
+
+ Catalogger can log your server's most important roles separately, and will
+ show who gave or removed the roles in addition to the target.
+
+