Skip to content

Commit

Permalink
Fix #1033 (#1034)
Browse files Browse the repository at this point in the history
* Ignore calendarEvents without skypeTeamsData

* Update to 1.3.25

---------

Co-authored-by: Julien Audo <[email protected]>
  • Loading branch information
julaudo and Julien Audo authored Dec 13, 2023
1 parent 82f7d6d commit 5a81dcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/browser/tools/activityHub.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ function getMeetingNotificationList(workerEvents, calendarEvents) {

function addEligibleCalendarEvents(calendarEvents, meetingId, notificationList) {
for (const ce of calendarEvents) {
if (JSON.parse(ce.skypeTeamsData).cid === meetingId) {
if (ce.skypeTeamsData && JSON.parse(ce.skypeTeamsData).cid === meetingId) {
notificationList.push(ce);
break;
}
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": "teams-for-linux",
"version": "1.3.24",
"version": "1.3.25",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
Expand Down

0 comments on commit 5a81dcd

Please sign in to comment.