[Posting] Don't sanitize on storage

We prefer to have the original input in database and sanitize on output when appropriate
This commit is contained in:
2021-05-01 22:53:08 +01:00
committed by Hugo Sales
parent 8f43c8b405
commit ab060332f0

View File

@@ -104,7 +104,6 @@ END;
*/
public static function storeNote(int $actor_id, ?string $content, array $attachments, bool $is_local, ?int $reply_to = null, ?int $repeat_of = null)
{
$content = Security::sanitize($content);
$note = Note::create([
'gsactor_id' => $actor_id,
'content' => $content,