Skip to content

Commit

Permalink
Release v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcHagen committed Jun 3, 2021
2 parents 60dee9e + 02585f3 commit c802053
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
---
## [Unreleased]

---
## [1.0.7] (2021-06-03)

## Bug Fixes
* [#10](https://github.com/bitfocus/companion-module-epiphan-pearl/issues/10) - A sanity check is done if the action variable exists, which if the variable was 0 returned a fault.

---
## [1.0.6] (2021-02-15)

Expand Down
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,8 @@ class EpiphanPearl extends instanceSkel {
*/
_getStartStopActionFromOptions(options) {
const startStopActionId = parseInt(options.startStopAction);
if (!options.startStopAction || startStopActionId === 99) {

if (typeof options.startStopAction === 'undefined' || options.startStopAction === null || startStopActionId === 99) {
return null;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "epiphan-pearl",
"version": "1.0.6",
"version": "1.0.7",
"manufacturer": "Epiphan",
"product": "Pearl",
"shortname": "pearl",
Expand Down

0 comments on commit c802053

Please sign in to comment.