1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-04-22 07:58:01 +03:00

fix: ",\t" adds to tab's title and URL on each cloud synchronization

This commit is contained in:
2025-11-14 04:48:54 +03:00
parent b51dd6083f
commit 2065ee4637
2 changed files with 3 additions and 3 deletions
@@ -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()
};
}