Skip to content

Commit

Permalink
Make firmwareStatus field not final in DTO object (openhab#3687)
Browse files Browse the repository at this point in the history
Fix openhab#3679

If not, calls of method limitToFields by PR openhab#3335 fails when the list of
fields does not contain firmwareStatus.

Signed-off-by: Laurent Garnier <[email protected]>
GitOrigin-RevId: e9719eb
  • Loading branch information
lolodomo authored and splatch committed Jul 12, 2023
1 parent 6eee3a4 commit e05f264
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class EnrichedThingDTO extends AbstractThingDTO {

public List<EnrichedChannelDTO> channels;
public ThingStatusInfo statusInfo;
public final FirmwareStatusDTO firmwareStatus;
public FirmwareStatusDTO firmwareStatus;
public boolean editable;

/**
Expand Down

0 comments on commit e05f264

Please sign in to comment.