fix: Escape regex for embeds (#3907)

Fixes #3899
This commit is contained in:
Apoorv Mishra
2022-08-02 14:10:11 +05:30
committed by GitHub
parent 00481d2bfc
commit 294521f162
56 changed files with 256 additions and 29 deletions

View File

@@ -23,5 +23,15 @@ describe("Spotify", () => {
expect("https://spotify.com".match(match)).toBe(null);
expect("https://open.spotify.com".match(match)).toBe(null);
expect("https://www.spotify.com".match(match)).toBe(null);
expect(
"https://opennspotify.com/track/29G1ScCUhgjgI0H72qN4DE?si=DxjEUxV2Tjmk6pSVckPDRg".match(
match
)
).toBe(null);
expect(
"https://open.spotifyycom/track/29G1ScCUhgjgI0H72qN4DE?si=DxjEUxV2Tjmk6pSVckPDRg".match(
match
)
).toBe(null);
});
});