all repos — stealth-developers @ d06e74e90dd3c88a7b74708880d1c73ec5d7eff2

some fixes...
vi v@vt3e.cat
Tue, 07 Apr 2026 00:52:12 +0100
commit

d06e74e90dd3c88a7b74708880d1c73ec5d7eff2

parent

38afa3fb958ba25aeeed5c90f1d92f6e6e0f72bc

M src/events/messageCreate.tssrc/events/messageCreate.ts

@@ -213,7 +213,6 @@ .insert(ticketMessages)

.values({ ticketId: ticket.id, authorId: message.author.id, - messageId: message.id, authorType: authorType, content: anonymisedContent, createdAt: message.createdAt,

@@ -327,6 +326,12 @@ }

} } catch (error) { logger.error(error, "Failed to log ticket message"); + await message.reply({ + content: "Failed to log this message.", + allowedMentions: { + parse: [], + }, + }); } }, };
M src/interactions/commands/roblox/getBanHistory.tssrc/interactions/commands/roblox/banHistory.ts

@@ -80,10 +80,8 @@ const projectKey = interaction.options.getString(

config.terminology, true, ) as keyof typeof config.projects; - console.log(projectKey); const project = config.projects[projectKey]; - console.log(project); const universeId = project.universe; const isModerator = await hasManagerPermissions(

@@ -148,7 +146,7 @@ await interaction.editReply(

`Found user with username ${user.name}, fetching thumbnail...`, ); const [thumbnailRes] = await roblox.getThumbnail(id, { shape: "SQUARE" }); - const thumbnailUri = thumbnailRes ? thumbnailRes.response.imageUri : null; + const thumbnailUri = thumbnailRes ? thumbnailRes.response?.imageUri : null; const randomMessages = [ "grok is this true",
M src/roblox/robloxUser.tssrc/roblox/robloxUser.ts

@@ -36,7 +36,7 @@ await interaction.editReply(

`Found user with username ${user.name}, fetching thumbnail...`, ); const [thumbnailRes] = await roblox.getThumbnail(id, { shape: "SQUARE" }); - const thumbnailUri = thumbnailRes ? thumbnailRes.response.imageUri : null; + const thumbnailUri = thumbnailRes ? thumbnailRes.response?.imageUri : null; const randomMessages = [ "grok is this true",