Skip to content

Commit

Permalink
Fix Version
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Sep 18, 2023
2 parents 8775cc1 + 4f57e3e commit 3c86a7a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<<<<<<< HEAD
2023-09-17 v9.0.0
- Remove GeoJSONLD Render Functions
- Remove MBTiles Render Functions
Expand All @@ -12,6 +13,15 @@
2023-09-05 v8.2.4
- Update TippeCanoe to latest version
- Make GeoJSON+LD output a default
=======
2023-09-09 v8.3.1
- Use the file extension from the content-type header when it disagrees with content-disposition in https://github.com/openaddresses/batch-machine/pull/54

2023-09-05 v8.3.0
- Update Mapbox Vector Tile dependency in https://github.com/openaddresses/batch-machine/pull/52
- Make GeoJSON+LD output a default in https://github.com/openaddresses/batch-machine/pull/51
- Update TippeCanoe to latest version in https://github.com/openaddresses/batch-machine/pull/50
>>>>>>> 4f57e3e6be53695ef0a4a8db60139154de09b6cf

2023-09-02 v8.2.3
- Fix properties in geojson-ld features in https://github.com/openaddresses/batch-machine/pull/49
Expand Down
7 changes: 5 additions & 2 deletions openaddr/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,11 @@ def guess_url_file_extension(url):
if path_ext == attachment_ext:
_L.debug('Content-Disposition agrees: "{}"'.format(match.group('filename')))
else:
_L.debug('Content-Disposition disagrees: "{}"'.format(match.group('filename')))
path_ext = False
_L.debug('Content-Disposition disagrees: "{}" says we should use "{}", using "{}" instead'.format(
match.group('filename'),
attachment_ext,
path_ext,
))

if not path_ext:
#
Expand Down

0 comments on commit 3c86a7a

Please sign in to comment.