Skip to content

Commit

Permalink
Merge pull request #8290 from blink1073/fix-set-name
Browse files Browse the repository at this point in the history
[1.2.] Fix set name
  • Loading branch information
Steven Silvester committed Apr 28, 2020
2 parents 58d06b8 + d91c1f2 commit bcd5c3f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/apputils/src/clientsession.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,10 @@ export class ClientSession implements IClientSession {
// Change to the real path.
await session.setPath(this._path);

// Change to the real type
// Update the name in case it has changed since we launched the session.
await session.setName(this._name);

// Change to the real type.
await session.setType(this._type);

if (this._session) {
Expand Down

0 comments on commit bcd5c3f

Please sign in to comment.