Skip to content
Snippets Groups Projects
Commit 12882e60 authored by Jared Hancock's avatar Jared Hancock
Browse files

pipe: Use empty message token '--' if no message

Previously, the subject was duplicated, which is really confusing
parent 78650a7a
Branches
Tags
No related merge requests found
......@@ -433,7 +433,7 @@ class ApiEmailDataParser extends EmailDataParser {
$data['source'] = 'Email';
if(!$data['message'])
$data['message'] = $data['subject']?$data['subject']:'-';
$data['message'] = '--';
if(!$data['subject'])
$data['subject'] = '[No Subject]';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment