Send proper activity when listening is created through subsonic API
This commit is contained in:
parent
98c7cb6f05
commit
5ebaa884c1
|
@ -11,6 +11,7 @@ from rest_framework import viewsets
|
||||||
from rest_framework.decorators import list_route
|
from rest_framework.decorators import list_route
|
||||||
from rest_framework.serializers import ValidationError
|
from rest_framework.serializers import ValidationError
|
||||||
|
|
||||||
|
from funkwhale_api.activity import record
|
||||||
from funkwhale_api.common import preferences
|
from funkwhale_api.common import preferences
|
||||||
from funkwhale_api.favorites.models import TrackFavorite
|
from funkwhale_api.favorites.models import TrackFavorite
|
||||||
from funkwhale_api.music import models as music_models
|
from funkwhale_api.music import models as music_models
|
||||||
|
@ -569,5 +570,6 @@ class SubsonicViewSet(viewsets.GenericViewSet):
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if serializer.validated_data['submission']:
|
if serializer.validated_data['submission']:
|
||||||
serializer.save()
|
l = serializer.save()
|
||||||
|
record.send(l)
|
||||||
return response.Response({})
|
return response.Response({})
|
||||||
|
|
Loading…
Reference in New Issue