mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-03-15 04:12:32 +00:00
fix message parsing
This commit is contained in:
parent
7c4efa29fc
commit
65d17b4080
@ -4,12 +4,11 @@ import './styles.css';
|
||||
import { executeEvent } from '../../utils/events';
|
||||
|
||||
const extractComponents = (url) => {
|
||||
console.log('url', url);
|
||||
if (!url.startsWith("qortal://")) {
|
||||
if (!url || !url.startsWith("qortal://")) { // Check if url exists and starts with "qortal://"
|
||||
return null;
|
||||
}
|
||||
|
||||
url = url.replace(/^(qortal\:\/\/)/, "");
|
||||
url = url.replace(/^(qortal\:\/\/)/, ""); // Safe to use replace now
|
||||
if (url.includes("/")) {
|
||||
let parts = url.split("/");
|
||||
const service = parts[0].toUpperCase();
|
||||
@ -59,6 +58,8 @@ function processText(input) {
|
||||
|
||||
export const MessageDisplay = ({ htmlContent, isReply }) => {
|
||||
const linkify = (text) => {
|
||||
if (!text) return ""; // Return an empty string if text is null or undefined
|
||||
|
||||
let textFormatted = text;
|
||||
const urlPattern = /(\bhttps?:\/\/[^\s<]+|\bwww\.[^\s<]+)/g;
|
||||
textFormatted = text.replace(urlPattern, (url) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user