tpmkms_4wp 9.4.3-beta.1 → 9.4.3-beta.2

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/asking.js CHANGED
@@ -18,7 +18,7 @@ const config = {
18
18
  bridges: [
19
19
  {
20
20
  id: "nevermind",
21
- bridge: "{ ...next(operator) }",
21
+ bridge: "{ ...next(operator), complete: true }",
22
22
  semantic: (args) => {
23
23
  const {config, context} = args
24
24
  // stop asking all questions
@@ -166,7 +166,7 @@ class API {
166
166
  return { when: true, who: reminder.who, text: reminder.text, id: reminder.id, missingReminder: true, missingDate: !reminder.dateTimeSelector }
167
167
  }
168
168
  if (what == 'missingDate' && !reminder.dateTimeSelector) {
169
- return { when: true, who: reminder.who, text: reminder.text, id: reminder.id, missingDate: true, missingReminder: !reminder.missingReminder }
169
+ return { when: true, who: reminder.who, text: reminder.text, id: reminder.id, missingDate: true, missingReminder: !reminder.text }
170
170
  }
171
171
  }
172
172