v1.18.x
barisusakli 9 years ago
parent 19b9242934
commit decd853507

@ -84,7 +84,11 @@ define('notifications', ['sounds', 'translator', 'components'], function(sound,
payload.message = notifData.bodyShort; payload.message = notifData.bodyShort;
payload.type = 'info'; payload.type = 'info';
payload.clickfn = function() { payload.clickfn = function() {
window.location.href = config.relative_path + '/' + notifData.path; if (notifData.path.startsWith('http') && notifData.path.startsWith('https')) {
window.location.href = notifData.path;
} else {
window.location.href = window.location.protocol + '//' + window.location.host + config.relative_path + notifData.path;
}
}; };
} else { } else {
payload.message = '[[notifications:you_have_unread_notifications]]'; payload.message = '[[notifications:you_have_unread_notifications]]';

Loading…
Cancel
Save