fix typo in failed shoutout warning

This commit is contained in:
2025-09-26 01:46:58 +02:00
parent b4c56972f1
commit ec7fb705c8

View File

@@ -14,7 +14,7 @@ eventSub.onChannelRaidTo(streamerId, async msg => {
try {
await streamerApi.chat.shoutoutUser(streamerId, msg.raidingBroadcasterId);
} catch (e) {
logger.warn(`Failed to give automatic shoutout to ${msg.raidedBroadcasterDisplayName}`);
logger.warn(`Failed to give automatic shoutout to ${msg.raidingBroadcasterDisplayName}`);
logger.warn(e as string);
};
const raider = await User.initUsername(msg.raidingBroadcasterName);