diff --git a/funkwhale_api/music/models.py b/funkwhale_api/music/models.py
index 770274bdfd00ba81bfd11009bbf2aab0581f4244..092516decda3218952560693953dc2d6f13d18d4 100644
--- a/funkwhale_api/music/models.py
+++ b/funkwhale_api/music/models.py
@@ -244,7 +244,7 @@ class Lyrics(models.Model):
     url = models.URLField(unique=True)
     content = models.TextField(null=True, blank=True)
 
-    @celery.app.task(name='ImportJob.run', filter=celery.task_method)
+    @celery.app.task(name='Lyrics.fetch_content', filter=celery.task_method)
     def fetch_content(self):
         html = lyrics_utils._get_html(self.url)
         content = lyrics_utils.extract_content(html)