We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9280a1 commit db3b978Copy full SHA for db3b978
Code.js
@@ -65,7 +65,7 @@ function mitime(isInitialRun = !1) {
65
if (!properties)
66
throw new MitimeError(prepareEmail, "Properties are empty");
67
return string.replace(EMAIL_REGEX, (match, property) => {
68
- if (properties[property])
+ if (!properties[property])
69
throw new MitimeError(prepareEmail, `Property ${property} not found`);
70
return properties[property];
71
});
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mitime",
3
- "version": "1.2.0",
+ "version": "1.2.3",
4
"description": "A Google Apps Script powered Dabble.me alternative.",
5
"scripts": {
6
"build": "vite build && head -$(($(wc -l < dist/Code.js) - 4)) dist/Code.js > Code.js && rm -rf dist",
0 commit comments