Skip to content

Commit

Permalink
Fix calendar link (#7153)
Browse files Browse the repository at this point in the history
  • Loading branch information
DawoudIO committed Sep 20, 2024
2 parents a0cfe6b + 0bd015f commit b3f7717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/skin/js/Calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ function initializeCalendar() {
var eventSourceParams = eventData.source.url.split("/");
var eventSourceType =
eventSourceParams[eventSourceParams.length - 3];
if (eventData.url) {
if (eventData.url !== "null") {
// this event has a URL, so we should redirect the user to that URL
window.open(eventData.url);
} else if (
Expand Down

0 comments on commit b3f7717

Please sign in to comment.