Skip to content

Commit

Permalink
2.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
UNiXMIT committed May 30, 2023
1 parent 28a5800 commit 7120fe1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
### Enhancements
- Add QuickLink for Entitlements.

### Fixes
- Fixed issue with the 3rd Line Ref. and Reminder URL that stopped it from working in Chrome/Edge randomly.

# 2.9.6

### Tweaks
Expand Down
Binary file modified CHANGELOG.pdf
Binary file not shown.
Binary file modified SFExt.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions SFExt/js/SFExt.js
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ function refEmail() {
+ "[FTS credentials can be found in the case]\n\n"
};
}
let outlookURL = "https://outlook.office.com/mail/0/deeplink/compose";
let outlookURL = "https://outlook.office.com/mail/deeplink/compose";
let finalQuery = [];
Object.entries(userQuery).forEach(([key, value]) => {
finalQuery.push(encodeURIComponent(key) + '=' + encodeURIComponent(value));
Expand Down Expand Up @@ -653,7 +653,7 @@ function addReminderEvent() {
"subject" : querySubject,
"body" : caseLink
};
let calendarURL = "https://outlook.office.com/calendar/0/deeplink/compose?path=/calendar/action/compose";
let calendarURL = "https://outlook.office.com/calendar/deeplink/compose";
let finalQuery = [];
Object.entries(userQuery).forEach(([key, value]) => {
finalQuery.push(encodeURIComponent(key) + '=' + encodeURIComponent(value));
Expand Down

0 comments on commit 7120fe1

Please sign in to comment.