From 02cd2607c79c243070eb072eea78654683b39c96 Mon Sep 17 00:00:00 2001 From: Nick White Date: Mon, 28 Sep 2020 17:14:32 +0100 Subject: [iiifdownloader] Default to iiifmanifest type if none is given and no definitive service can be found --- cmd/iiifdownloader/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/iiifdownloader/main.go b/cmd/iiifdownloader/main.go index 79ee74c..507293b 100644 --- a/cmd/iiifdownloader/main.go +++ b/cmd/iiifdownloader/main.go @@ -316,7 +316,7 @@ func detectService(url string) string { case strings.HasPrefix(url, dfgPrefix): return "dfg" } - return "" + return "iiifmanifest" } func main() { -- cgit v1.2.1-24-ge1ad