summaryrefslogtreecommitdiffstats
path: root/core/src/OC/notification.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/OC/notification.js')
-rw-r--r--core/src/OC/notification.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/OC/notification.js b/core/src/OC/notification.js
index 45af1584123..427c857f7c3 100644
--- a/core/src/OC/notification.js
+++ b/core/src/OC/notification.js
@@ -96,7 +96,7 @@ export default {
*/
showHtml: function (html, options) {
options = options || {}
- options.showHtml = true
+ options.isHTML = true
options.timeout = (options.timeout === 0) ? -1 : options.timeout
const toast = window.OCP.Toast.message(html, options)
return $(toast.toastElement)