tpmkms_4wp 9.3.0-beta.28 → 9.3.0-beta.29

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.
@@ -262,7 +262,11 @@ const template = {
262
262
  if (Array.isArray(item.who)) {
263
263
  who = await gs(item.who.map((who) => who.text), ', ', ' and ')
264
264
  } else {
265
- who = 'you'
265
+ if (item.who.text == 'me') {
266
+ who = 'you'
267
+ } else {
268
+ who = item.text
269
+ }
266
270
  }
267
271
  return `When should I remind ${who} to ${item.text}`
268
272
  },
package/package.json CHANGED
@@ -341,8 +341,8 @@
341
341
  "scriptjs": "^2.5.9",
342
342
  "table": "^6.7.1",
343
343
  "uuid": "^9.0.0",
344
- "theprogrammablemind_4wp": "9.3.0-beta.28"
344
+ "theprogrammablemind_4wp": "9.3.0-beta.29"
345
345
  },
346
- "version": "9.3.0-beta.28",
346
+ "version": "9.3.0-beta.29",
347
347
  "license": "UNLICENSED"
348
348
  }