Commit 750fa97a authored by Chris Molozian's avatar Chris Molozian
Browse files

Fix the registered function name for 'nk.channelIdBuild' in the JavaScript runtime.

parent 2cf37a59
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4,7 +4,8 @@ All notable changes to this project are documented below.
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).

## [Unreleased]

### Fixed
- Fix the registered function name for 'nk.channelIdBuild' in the JavaScript runtime.

## [3.10.0] - 2021-12-16
### Added
+1 −1
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ func (n *runtimeJavascriptNakamaModule) mappings(r *goja.Runtime) map[string]fun
		"localcacheDelete":                n.localcacheDelete(r),
		"channelMessageSend":              n.channelMessageSend(r),
		"channelMessageUpdate":            n.channelMessageUpdate(r),
		"channeldIdBuild":                 n.channelIdBuild(r),
		"channelIdBuild":                  n.channelIdBuild(r),
		"binaryToString":                  n.binaryToString(r),
		"stringToBinary":                  n.stringToBinary(r),
	}