Skip to content

Commit

Permalink
add fast_audio flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikvirendrar committed Oct 28, 2024
1 parent 1ba1d2e commit b0edcc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/voiceover/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ def save_voice_over(request):
print("Saved IP Translation with inprogress")
translation = inprogress_translation
# Check if the transcript has a user
if task.user == request.user:
if task.user != request.user:
return Response(
{"message": "You are not allowed to update this voice_over."},
status=status.HTTP_400_BAD_REQUEST,
Expand Down

0 comments on commit b0edcc0

Please sign in to comment.