From 474dcf05fdda40a00fca4744133b25b5e5fd8959 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 29 Sep 2022 11:13:18 +0200 Subject: Only match http(s) URLs for references Signed-off-by: Joas Schilling --- core/src/OCP/comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src') diff --git a/core/src/OCP/comments.js b/core/src/OCP/comments.js index 0b44dd7be81..cd1e8a8fa77 100644 --- a/core/src/OCP/comments.js +++ b/core/src/OCP/comments.js @@ -34,7 +34,7 @@ import $ from 'jquery' * * This is a copy of the backend regex in IURLGenerator, make sure to adjust both when changing */ -const urlRegex = /(\s|^)(https?:\/\/)?((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|$)/ig +const urlRegex = /(\s|^)(https?:\/\/)((?:[-A-Z0-9+_]+\.)+[-A-Z]+(?:\/[-A-Z0-9+&@#%?=~_|!:,.;()]*)*)(\s|$)/ig /** * @param {any} content - -- cgit v1.2.3