tpmkms_4wp 9.3.0-beta.27 → 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.
@@ -259,10 +259,14 @@ const template = {
259
259
  const items = api.askAbout()
260
260
  const item = items[0]
261
261
  let who
262
- if (item.who.id == 'me') {
263
- who = 'you'
264
- } else {
262
+ if (Array.isArray(item.who)) {
265
263
  who = await gs(item.who.map((who) => who.text), ', ', ' and ')
264
+ } else {
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.27"
344
+ "theprogrammablemind_4wp": "9.3.0-beta.29"
345
345
  },
346
- "version": "9.3.0-beta.27",
346
+ "version": "9.3.0-beta.29",
347
347
  "license": "UNLICENSED"
348
348
  }