Skip to content

Commit 3b41c63

Browse files
authored
Merge pull request #122 from TomMarkuske/master
Fix NPE on incoming DataTransferRequest
2 parents 9e8f2c0 + 60c134e commit 3b41c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocpp-v1_6/src/main/java/eu/chargetime/ocpp/feature/profile/ClientCoreProfile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public ClientCoreProfile(ClientCoreEventHandler handler) {
6060
features.add(new ChangeAvailabilityFeature(this));
6161
features.add(new ChangeConfigurationFeature(this));
6262
features.add(new ClearCacheFeature(this));
63-
features.add(new DataTransferFeature(null));
63+
features.add(new DataTransferFeature(this));
6464
features.add(new GetConfigurationFeature(this));
6565
features.add(new HeartbeatFeature(null));
6666
features.add(new MeterValuesFeature(null));

0 commit comments

Comments
 (0)