fix read time for M1 macs

This commit is contained in:
Gabriel Augendre 2023-03-02 13:10:39 +01:00
parent f30b8ec975
commit f63673ed63

View file

@ -16,6 +16,7 @@ from django.db.models import F, Prefetch
from django.template.defaultfilters import slugify
from django.urls import reverse
from django.utils import timezone
from lxml import etree
from articles.utils import (
build_full_absolute_url,
@ -132,8 +133,12 @@ class Article(models.Model):
def get_read_time(self) -> int:
content = self.get_formatted_content
if content:
return readtime.of_markdown(content).minutes
if not content:
return 0
try:
return readtime.of_html(content).minutes
except etree.Error:
# Needed for compatibility with M1 Macs
return 0
@cached_property