Fix Cannot assign null to property when tagline/tearline are blank during export

This commit is contained in:
Deon George 2021-09-08 22:53:27 +10:00
parent 64a887212d
commit fbfa2d5183
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ class Message extends FTNBase
private string $message; // The parsed message content
private string $message_src; // The actual message part
private string $tagline;
private string $tearline;
private ?string $tagline;
private ?string $tearline;
private string $origin; // FTS-0004.001
private int $tzutc;