mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-09-19 20:28:32 +00:00
(js) Catch exception when registering mailto
This commit is contained in:
@@ -145,7 +145,10 @@
|
||||
// Try to register SOGo has an handler for mailto: links
|
||||
if (navigator && navigator.registerProtocolHandler) {
|
||||
var mailtoURL = window.location.origin + window.ApplicationBaseURL + 'UIxMailPopupView#!/Mail/0/INBOX/new?%s';
|
||||
navigator.registerProtocolHandler('mailto', mailtoURL, 'SOGo');
|
||||
try {
|
||||
navigator.registerProtocolHandler('mailto', mailtoURL, 'SOGo');
|
||||
}
|
||||
catch (e) {}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user