From e2ac4a20f8ad6026f37e95209ef1d6e2848aac11 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Tue, 25 Feb 2025 16:01:05 -0700 Subject: [PATCH] Add missing tent mapping --- services/mappings.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/services/mappings.go b/services/mappings.go index 8766863..aae36f5 100644 --- a/services/mappings.go +++ b/services/mappings.go @@ -111,6 +111,14 @@ var regexMap = []RegexMapping{ Pattern: regexp.MustCompile("librex|librey"), Targets: []string{"librey"}, }, + { + // Tent + // Note: This is a Bandcamp alternative, but the endpoints are + // completely different than Bandcamp, so 1-to-1 mapping of URLs + // is not possible without some additional work + Pattern: regexp.MustCompile("tent"), + Targets: []string{"tent"}, + }, } func MatchRequest(service string) (string, error) {