Fix when report ap message does not have content field (#689)

pull/694/head
Henri Dickson 2024-01-08 21:48:21 -05:00 zatwierdzone przez GitHub
rodzic 2f4daa02bd
commit f86f3a49e4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -172,7 +172,7 @@ class Report(StatorModel):
subject_post=subject_post,
source_domain=Domain.get_remote_domain(domain_id),
type="remote",
complaint=data.get("content"),
complaint=str(data.get("content", "")),
)
def to_ap(self):