We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6416f28 commit 35a297eCopy full SHA for 35a297e
lib/data/doveadm.data.js
@@ -114,6 +114,9 @@ async function normalizeDoveadm(doveadm) {
114
const response = []
115
for (const [k2, v2] of Object.entries(v.response)) {
116
var rtl = responseTypeLookup(v2.type)
117
+ if (!rtl) {
118
+ throw new Error('Response item "' + k2 + '" for entry "' + k + '" is missing type!')
119
+ }
120
response.push({
121
example: v2.example ?? rtl[1],
122
key: k2,
0 commit comments