diff --git a/api/funkwhale_api/playlists/migrations/0005_remove_playlist_user_playlist_actor.py b/api/funkwhale_api/playlists/migrations/0005_remove_playlist_user_playlist_actor.py index 48b2cf5e5..ec02beda9 100644 --- a/api/funkwhale_api/playlists/migrations/0005_remove_playlist_user_playlist_actor.py +++ b/api/funkwhale_api/playlists/migrations/0005_remove_playlist_user_playlist_actor.py @@ -25,7 +25,7 @@ def gen_uuid(apps, schema_editor): unique_uuid = uuid.uuid4() fid = utils.full_url( - reverse("federation:music:playlist-detail", kwargs={"uuid": unique_uuid}) + reverse("federation:music:playlists-detail", kwargs={"uuid": unique_uuid}) ) row.uuid = unique_uuid row.fid = fid