We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0805a commit ccf9b45Copy full SHA for ccf9b45
go_capture/views.py
@@ -31,6 +31,7 @@ def capture_async(request):
31
fcm_token = request.POST['fcm_registration_token']
32
print(f'token: {fcm_token}')
33
filename = Path(image_file.name)
34
+ print(filename)
35
output_path = settings.IMAGES_DIR / filename
36
with output_path.open('wb') as output_file:
37
output_file.write(image_file.read())
0 commit comments