Use post id to generate summary class (#583)

Removes the "expand linked CWs" feature for now.
This commit is contained in:
Karthik Balakrishnan 2023-05-20 12:32:40 +05:30 committed by GitHub
parent 568b87dadb
commit 68dc2dc9ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
import datetime import datetime
import hashlib
import json import json
import mimetypes import mimetypes
import ssl import ssl
@ -436,7 +435,7 @@ class Post(StatorModel):
""" """
if not self.summary: if not self.summary:
return "" return ""
return "summary-" + hashlib.md5(self.summary.encode("utf8")).hexdigest() return "summary-{self.id}"
@property @property
def stats_with_defaults(self): def stats_with_defaults(self):