windsor-bot 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/bot.js +1 -1
  2. package/package.json +1 -1
package/dist/bot.js CHANGED
@@ -361,7 +361,7 @@ export function createWindsorBot() {
361
361
  ];
362
362
  }
363
363
  if (config.includeIcon) {
364
- await replySafe(message, Reaction.thinking);
364
+ await reactSafe(message, Reaction.thinking);
365
365
  const iconCacheDir = getCurrentConfig().iconCacheDir ?? './icon-cache';
366
366
  const iconPath = await generateIcon(strippedText, iconCacheDir);
367
367
  if (iconPath)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windsor-bot",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Self-hosted Discord bot automation for household list and todo printing",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",