Fix: PostFileModel field height name typo

This commit is contained in:
Aroy-Art 2025-03-14 21:44:36 +01:00
parent c3dd0d70ba
commit a9d33bd85c
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -40,8 +40,8 @@ class PostFileModel(models.Model):
# Image Blur Hash for preview presentation
blur_hash = models.CharField(max_length=32)
# If file has width and hight save it.
hight = models.IntegerField(null=True)
# If file has width and height save it.
height = models.IntegerField(null=True)
width = models.IntegerField(null=True)
mimetype = models.CharField(max_length=256, blank=True)