Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addon_service/external_storage_service/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class ExternalStorageService(ExternalService):
@property
def supported_features(self) -> list[SupportedFeatures]:
"""get the enum representation of int_supported_features"""
return SupportedFeatures(self.int_supported_features)
return SupportedFeatures(self.int_supported_features or 0)

@supported_features.setter
def supported_features(self, new_supported_features: SupportedFeatures):
Expand Down