Skip to content

Commit

Permalink
Merge 46c0311 into b360b4d
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienbarbier committed May 15, 2020
2 parents b360b4d + 46c0311 commit dea548a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.3.2] - 2020-05-15

### Bugfix

- Fix `.join` crash on `GET_STORAGE_ITEM` event. from shell-host

## [1.3.1] - 2020-05-11

### Added
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": "fsm-shell",
"version": "1.3.1",
"version": "1.3.2",
"description": "client library for FSM shell",
"main": "release/fsm-shell-client.js",
"module": "release/fsm-shell-client.es.js",
Expand Down
2 changes: 1 addition & 1 deletion src/ShellSdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export class ShellSdk {

if (!!subscribers) {
for (const subscriber of subscribers) {
if (payload.type == SHELL_EVENTS.Version1.GET_STORAGE_ITEM) {
if (payload.type == SHELL_EVENTS.Version1.GET_STORAGE_ITEM && !this.isRoot) {
// different call for GET_STORAGE_ITEM to support legacy code (CPB-47059)
subscriber(
payload.value.value,
Expand Down

0 comments on commit dea548a

Please sign in to comment.