Skip to content

Commit

Permalink
Merge pull request #122 from TomMarkuske/master
Browse files Browse the repository at this point in the history
Fix NPE on incoming DataTransferRequest
  • Loading branch information
TVolden authored Sep 24, 2020
2 parents 9e8f2c0 + 60c134e commit 3b41c63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public ClientCoreProfile(ClientCoreEventHandler handler) {
features.add(new ChangeAvailabilityFeature(this));
features.add(new ChangeConfigurationFeature(this));
features.add(new ClearCacheFeature(this));
features.add(new DataTransferFeature(null));
features.add(new DataTransferFeature(this));
features.add(new GetConfigurationFeature(this));
features.add(new HeartbeatFeature(null));
features.add(new MeterValuesFeature(null));
Expand Down

0 comments on commit 3b41c63

Please sign in to comment.