Skip to content

Commit

Permalink
Fix Calendar Properties URLs Are Missing a Slash (#7235)
Browse files Browse the repository at this point in the history
# Description & Issue number it closes
Fix Calendar Properties URLs Are Missing a Slash
Issue: 7234

## Screenshots (if appropriate)
<!-- Before and after --> 

## How to test the changes?

## Type of change

- [x] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] This change requires a documentation update

# How Has This Been Tested?

<!-- Please describe the tests that you ran to verify your changes.
Provide instructions so we can reproduce. Please also list any relevant
details for your test configuration -->

# Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream
modules
  • Loading branch information
DawoudIO authored Feb 3, 2025
2 parents d6b5656 + 0a880da commit 4916179
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/skin/js/Calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,16 @@ window.calendarPropertiesModal = {
if (calendar.AccessToken) {
HTMLURL =
window.CRM.fullURL +
"external/calendars/" +
"/external/calendars/" +
calendar.AccessToken;
icsURL =
window.CRM.fullURL +
"api/public/calendar/" +
"/api/public/calendar/" +
calendar.AccessToken +
"/ics";
jsonURL =
window.CRM.fullURL +
"api/public/calendar/" +
"/api/public/calendar/" +
calendar.AccessToken +
"/events";
}
Expand Down

0 comments on commit 4916179

Please sign in to comment.