From 7ad74db834a67a2f6ba882d83b4f4f6ca6315871 Mon Sep 17 00:00:00 2001 From: Mark Hoekveen Date: Sun, 3 Aug 2025 13:58:05 +0200 Subject: [PATCH] stop quota increase --- backend/playlist/models/profile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/playlist/models/profile.py b/backend/playlist/models/profile.py index 11db46c..97b3634 100644 --- a/backend/playlist/models/profile.py +++ b/backend/playlist/models/profile.py @@ -131,7 +131,6 @@ class Profile(models.Model): return None def save(self, *args, **kwargs): - self.update_quota() super().save(*args, **kwargs) @receiver(post_save, sender=User)