Skip to content

Commit

Permalink
Pick property properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Wylie committed Jan 27, 2016
1 parent 8617e19 commit 7bec7bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/raygun.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var Raygun = function () {
_isOffline = options.isOffline;
_groupingKey = options.groupingKey;
_tags = options.tags;
_useHumanStringForObject = options.useHumanStringForObject || true;
_useHumanStringForObject = options.useHumanStringForObject === undefined ? true : options.useHumanStringForObject;

if (_isOffline) {
_offlineStorage.init(_offlineStorageOptions);
Expand Down

0 comments on commit 7bec7bd

Please sign in to comment.