fix export CSV

This commit is contained in:
Tykayn 2025-06-29 10:29:27 +02:00 committed by tykayn
parent 2ea7f7711f
commit 8136d8e0cb
3 changed files with 12 additions and 36 deletions

View file

@ -312,7 +312,7 @@ class Place
$noteContent .= "FIXME: " . $tags['fixme'];
$hasNote = true;
}
$this->setNoteContent($noteContent ?: null);
$this->setNoteContent($noteContent ? $noteContent : null);
$this->setHasNote($hasNote);
}