From 2065ee4637e6e4238db1e624b57f559e2559ed7f Mon Sep 17 00:00:00 2001 From: Eugene Fox Date: Fri, 14 Nov 2025 04:48:54 +0300 Subject: [PATCH] fix: ",\t" adds to tab's title and URL on each cloud synchronization --- features/collectionStorage/utils/parseCollections.ts | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/features/collectionStorage/utils/parseCollections.ts b/features/collectionStorage/utils/parseCollections.ts index f7236c4..840552e 100644 --- a/features/collectionStorage/utils/parseCollections.ts +++ b/features/collectionStorage/utils/parseCollections.ts @@ -74,7 +74,7 @@ function parseTab(data: string): TabItem { return { type: "tab", - url: data.match(/(?<=^(\t){1,2}t\|).*(?=\|)/)!.toString(), - title: data.match(/(?<=^(\t){1,2}t\|.*\|).*$/)?.toString() + url: data.match(/(?<=^\t{1,2}t\|).*(?=\|)/)!.toString(), + title: data.match(/(?<=^\t{1,2}t\|.*\|).*$/)?.toString() }; } diff --git a/package.json b/package.json index 684edc0..13a7853 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tabs-aside", "private": true, - "version": "3.2.1", + "version": "3.2.2", "type": "module", "scripts": { "dev": "wxt",