Skip to content

Commit

Permalink
Merge pull request #113 from hurali97/fix/kotlin-1.7.0-exhaustive-when
Browse files Browse the repository at this point in the history
fix: when expression must be exhaustive by adding else branch
  • Loading branch information
dawhitla authored Jan 30, 2023
2 parents ff6fabc + db4a6ef commit 87e553f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ class AmazonIvsView(private val context: ThemedReactContext) : FrameLayout(conte
data.putMap("playerData", playerData)

reactContext.getJSModule(RCTEventEmitter::class.java).receiveEvent(id, Events.DATA.toString(), data)
};
}
else -> {}
}

val onStateChangeData = Arguments.createMap()
Expand Down

1 comment on commit 87e553f

@chrisedington
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dawhitla any idea when a new version will be published to NPM?

Please sign in to comment.