@openeventkit/event-site 2.1.33 → 2.1.34

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@openeventkit/event-site",
3
3
  "description": "Event Site",
4
- "version": "2.1.33",
4
+ "version": "2.1.34",
5
5
  "author": "Tipit LLC",
6
6
  "dependencies": {
7
7
  "@emotion/server": "^11.11.0",
@@ -155,11 +155,6 @@ class ActivitySynchStrategy extends AbstractSynchStrategy{
155
155
  case 'INSERT':
156
156
  case 'UPDATE':{
157
157
  let entity = await fetchEventById(this.summit.id, entity_id, this.accessToken);
158
- if(this.accessToken) {
159
- const streaming_info = await fetchStreamingInfoByEventId(this.summit.id, entity_id, this.accessToken);
160
- if(streaming_info) entity = {...entity, ...streaming_info};
161
- }
162
-
163
158
  if(!entity){
164
159
  // was deleted ( un - published)
165
160
  return this._handleDeleteOrUnpublish(entity_id, payload, eventsData);