We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f480b commit 4cba1b9Copy full SHA for 4cba1b9
examples/js/hello-sdl/index.html
@@ -136,9 +136,9 @@
136
137
async _registerApp() {
138
const version = new SDL.rpc.structs.SdlMsgVersion();
139
- version.setMajorVersion(this._appConfig.syncMsgVersion.major)
140
- .setMinorVersion(this._appConfig.syncMsgVersion.minor)
141
- .setPatchVersion(this._appConfig.syncMsgVersion.patch);
+ version.setMajorVersion(this._appConfig.syncMsgVersion.majorVersion)
+ .setMinorVersion(this._appConfig.syncMsgVersion.minorVersion)
+ .setPatchVersion(this._appConfig.syncMsgVersion.patchVersion);
142
143
const rai = new SDL.rpc.messages.RegisterAppInterface();
144
rai.setSdlMsgVersion(version)
0 commit comments