Skip to content
This repository has been archived by the owner on Oct 1, 2018. It is now read-only.

Commit

Permalink
Fix for #88 .
Browse files Browse the repository at this point in the history
  • Loading branch information
nikDemyankov committed Jan 16, 2016
1 parent 4500ce4 commit baceab9
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,13 @@ public static ApplicationConfig fromJson(String jsonString) {
} else {
config.setStoreIdentifier("");
}

config.jsonString = jsonString;
} catch (Exception e) {
e.printStackTrace();
Log.d("CHCP", "Failed to convert json string into application config" , e);
config = null;
}

config.jsonString = jsonString;

return config;
}

Expand Down

0 comments on commit baceab9

Please sign in to comment.