polfan-server-js-client 0.2.56 → 0.2.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polfan-server-js-client",
3
- "version": "0.2.56",
3
+ "version": "0.2.57",
4
4
  "description": "JavaScript client library for handling communication with Polfan chat server.",
5
5
  "author": "Jarosław Żak",
6
6
  "license": "MIT",
@@ -204,11 +204,13 @@ export class TopicHistoryWindow extends TraversableRemoteCollection<Message> {
204
204
 
205
205
  public shallowCopy(): IndexedObjectCollection<Message> {
206
206
  const copy = new TopicHistoryWindow(this.roomId, this.topicId, this.tracker);
207
+ copy.eventTarget = this.eventTarget;
207
208
  copy._items = this._items;
208
209
  copy.limit = this.limit;
209
210
  copy.currentState = this.currentState;
210
211
  copy.fetchingState = this.fetchingState;
211
212
  copy.oldestId = this.oldestId;
213
+ copy.traverseLock = this.traverseLock;
212
214
  return copy;
213
215
  }
214
216