Skip to content

Commit

Permalink
[Fixes #8939] Fix store_spatial_files in upload form (#8940) (#8942)
Browse files Browse the repository at this point in the history
Co-authored-by: mattiagiupponi <[email protected]>
  • Loading branch information
github-actions[bot] and mattiagiupponi authored Mar 17, 2022
1 parent fec2cc7 commit 814e780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/upload/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def save_step_view(req, session):
name,
spatial_files,
overwrite=overwrite,
store_spatial_files=form.cleaned_data['store_spatial_files'] or True,
store_spatial_files=form.cleaned_data.get('store_spatial_files', True),
mosaic=form.cleaned_data['mosaic'] or scan_hint == 'zip-mosaic',
append_to_mosaic_opts=form.cleaned_data['append_to_mosaic_opts'],
append_to_mosaic_name=form.cleaned_data['append_to_mosaic_name'],
Expand Down

0 comments on commit 814e780

Please sign in to comment.