Merge pull request #1057 from paperless-ngx/bugfix-document-str

Bugfix: Don't assume the document has a title set
This commit is contained in:
shamoon 2022-06-01 08:28:22 -07:00 committed by GitHub
commit 2abe6eec84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -233,10 +233,13 @@ class Document(models.Model):
# Convert UTC database time to local time
created = datetime.date.isoformat(timezone.localdate(self.created))
if self.correspondent and self.title:
return f"{created} {self.correspondent} {self.title}"
else:
return f"{created} {self.title}"
res = f"{created}"
if self.correspondent:
res += f" {self.correspondent}"
if self.title:
res += f" {self.title}"
return res
@property
def source_path(self):