From: foss- Date: Sat, 30 Sep 2023 15:26:27 +0000 (+0200) Subject: Update jot-header.tpl X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bb64d08eaf3118b0bdc2f73e2be3f5f68d76d843;p=friendica.git Update jot-header.tpl replace `contains` by `includes` in the "view/theme/frio/templates/jot-header.tpl" file on line 227 to fix this error message (only doing the leg-work here, hope this helps) --- diff --git a/view/theme/frio/templates/jot-header.tpl b/view/theme/frio/templates/jot-header.tpl index c5c3576c7e..ed3839860e 100644 --- a/view/theme/frio/templates/jot-header.tpl +++ b/view/theme/frio/templates/jot-header.tpl @@ -224,7 +224,7 @@ } function linkDropper(event) { - var linkFound = event.dataTransfer.types.contains("text/uri-list"); + var linkFound = event.dataTransfer.types.includes("text/uri-list"); if(linkFound) event.preventDefault(); }