diff --git a/src/Services/GuildUpdateService.cs b/src/Services/GuildUpdateService.cs
index 06ea1a8..b119d90 100644
--- a/src/Services/GuildUpdateService.cs
+++ b/src/Services/GuildUpdateService.cs
@@ -228,8 +228,6 @@ public class GuildUpdateService : BackgroundService {
/// A notification sending result which may or may not have succeeded.
private async Task SendScheduledEventCreatedMessage(
IGuildScheduledEvent scheduledEvent, JsonNode settings, CancellationToken ct = default) {
- var currentUserResult = await _userApi.GetCurrentUserAsync(ct);
- if (!currentUserResult.IsDefined(out var currentUser)) return Result.FromError(currentUserResult);
if (!scheduledEvent.CreatorID.IsDefined(out var creatorId))
return Result.FromError(new ArgumentNullError(nameof(scheduledEvent.CreatorID)));