Skip to content

Commit

Permalink
Merge pull request #214 from Backblaze/fix-sse-response-change
Browse files Browse the repository at this point in the history
Fix for server response change regarding SSE
  • Loading branch information
mlech-reef committed Apr 8, 2021
2 parents ca35dcf + 2f6dcc5 commit 911e99b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
* Exclude packages inside the test package when installing
* Fix for server response change regarding SSE

## [1.5.0] - 2021-03-25

Expand Down
2 changes: 1 addition & 1 deletion b2sdk/encryption/setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _from_value_dict(cls, value_dict):
if value_dict is None:
kwargs['mode'] = EncryptionMode.NONE
else:
kwargs['mode'] = EncryptionMode(value_dict['mode'])
kwargs['mode'] = EncryptionMode(value_dict['mode'] or 'none')

algorithm = value_dict.get('algorithm')
if algorithm is not None:
Expand Down

0 comments on commit 911e99b

Please sign in to comment.