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 82dbbb4 commit 7095771Copy full SHA for 7095771
src/proxy/processors/push-action/parsePush.ts
@@ -121,7 +121,7 @@ const parsePersonLine = (line: string): PersonLine => {
121
if (!match) {
122
throw new Error(`Failed to parse person line: ${line}. Make sure to include a name, email, timestamp and timezone offset.`);
123
}
124
- return { name: match[1].trim(), email: match[2], timestamp: match[3] };
+ return { name: match[1], email: match[2], timestamp: match[3] };
125
};
126
127
/**
0 commit comments