We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9602d4 commit 107b7d3Copy full SHA for 107b7d3
src/lib/RelistenAPI.ts
@@ -10,7 +10,7 @@ export class RelistenAPI {
10
11
// Validate artist slug format
12
private static isValidArtistSlug(slug: string): boolean {
13
- return /^[a-z-]+$/i.test(slug);
+ return /^[a-z-\d]+$/i.test(slug);
14
}
15
16
// Generic cached fetch method
0 commit comments