tpmkms_4wp 9.3.0-beta.27 → 9.3.0-beta.28
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.
- package/common/reminders.js +3 -3
- package/package.json +2 -2
package/common/reminders.js
CHANGED
@@ -259,10 +259,10 @@ const template = {
|
|
259
259
|
const items = api.askAbout()
|
260
260
|
const item = items[0]
|
261
261
|
let who
|
262
|
-
if (item.who
|
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
|
+
who = 'you'
|
266
266
|
}
|
267
267
|
return `When should I remind ${who} to ${item.text}`
|
268
268
|
},
|
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.
|
344
|
+
"theprogrammablemind_4wp": "9.3.0-beta.28"
|
345
345
|
},
|
346
|
-
"version": "9.3.0-beta.
|
346
|
+
"version": "9.3.0-beta.28",
|
347
347
|
"license": "UNLICENSED"
|
348
348
|
}
|