Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## master

* Fixes a typo in Instabug.setPrimaryColor causing the API not to work

## v11.0.0 (2022-07-07)

* Bumps Instabug native SDKs to v11
Expand Down
2 changes: 1 addition & 1 deletion www/Instabug.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Instabug.show = function (success, error) {
* @param {function(string):void} error callback on function error
*/
Instabug.setPrimaryColor = function (color, success, error) {
exec(success, error, 'IBGPlugin', 'setPrimaryColor', [colorInteger]);
exec(success, error, 'IBGPlugin', 'setPrimaryColor', [color]);
};

/**
Expand Down