Skip to content

Commit db3b978

Browse files
committed
[Fix] update version
1 parent e9280a1 commit db3b978

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Code.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function mitime(isInitialRun = !1) {
6565
if (!properties)
6666
throw new MitimeError(prepareEmail, "Properties are empty");
6767
return string.replace(EMAIL_REGEX, (match, property) => {
68-
if (properties[property])
68+
if (!properties[property])
6969
throw new MitimeError(prepareEmail, `Property ${property} not found`);
7070
return properties[property];
7171
});

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mitime",
3-
"version": "1.2.0",
3+
"version": "1.2.3",
44
"description": "A Google Apps Script powered Dabble.me alternative.",
55
"scripts": {
66
"build": "vite build && head -$(($(wc -l < dist/Code.js) - 4)) dist/Code.js > Code.js && rm -rf dist",

0 commit comments

Comments
 (0)