Store the context as a separate field

This commit is contained in:
Michael 2024-07-01 15:05:44 +00:00
parent e3c782010f
commit 03189a1c8c
11 changed files with 97 additions and 12 deletions

View file

@ -1865,8 +1865,12 @@ class Transmitter
}
$data['sensitive'] = (bool)$item['sensitive'];
if (!empty($item['context']) && ($item['context'] != './')) {
$data['context'] = $item['context'];
}
if (!empty($item['conversation']) && ($item['conversation'] != './')) {
$data['conversation'] = $data['context'] = $item['conversation'];
$data['conversation'] = $item['conversation'];
}
if (!empty($title)) {