Skip to content

Commit

Permalink
SYNCT-65: Fixed null pointer exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Serkowski committed Jan 4, 2018
1 parent fac7c36 commit 9f64515
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -50,7 +50,7 @@ public AuditMessage readDataAndPushToParent(String category, Map<String, String>
auditMessage.setAvailableResourceUrls(SyncUtils.serializeMapToPrettyJson(resourceLinks));
auditMessage.setAction(action);
try {
Object data = syncPersistence.retrieveData(getPreferredClient(), category, uuid);
Object data = syncPersistence.retrieveData(clientName, category, uuid);
syncClient.pushDataToParent(data, clientName, pushUrl);

auditMessage.setSuccess(true);
Expand Down

0 comments on commit 9f64515

Please sign in to comment.