Skip to content

Commit

Permalink
Merge pull request RocketChat#523 from assistify/release/0.68.5-0.9.1
Browse files Browse the repository at this point in the history
Release 0.68.5 0.9.1
  • Loading branch information
vickyokrm authored Sep 19, 2018
2 parents b2926fe + 6753333 commit 864518d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Assistify 0.9.1

This is a bugfix release:

- You'll not be bothered with "user has left channel" in threads anymore
- Livechat with guest pool now responds immediately to an agent joining. And the agent's full name is displayed as well.

# Assistify 0.9.0

This release of the Assistify-Chat is way more disruptive than the version number might suggest: In contrast to earlier releases, we did not build upon the previous version, but re-started on plain Rocket.Chat.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ export class ThreadBuilder {
// Create messages linking the parent room and the thread
this._linkMessages(threadRoom, this._parentRoom, repostedMessage);
}
Meteor.call('saveRoomSettings', threadRoomCreationResult.rid, 'systemMessages', false);

return threadRoom;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-lib/rocketchat.info
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "v0.68.5-0.9.0"
"version": "v0.68.5-0.9.1"
}
2 changes: 1 addition & 1 deletion packages/rocketchat-livechat/.app/client/lib/_livechat.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ this.Livechat = new (class Livechat {
this._agent.set(result);
}
});
this.stream.on(this._room.get(), { visitorToken: visitor.getToken() }, (eventData) => {
this.stream.on(this._room.get(), { token: visitor.getToken() }, (eventData) => {
if (!eventData || !eventData.type) {
return;
}
Expand Down

0 comments on commit 864518d

Please sign in to comment.