diff options
author | Nick White <git@njw.name> | 2020-09-28 17:14:32 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2020-09-28 17:14:32 +0100 |
commit | 02cd2607c79c243070eb072eea78654683b39c96 (patch) | |
tree | d4364f2fb498ff658769e599d610f5958191ccbc /cmd/iiifdownloader | |
parent | 1d6117b2af1ddb124e24bcc3109b0a9ac72bf39b (diff) |
[iiifdownloader] Default to iiifmanifest type if none is given and no definitive service can be found
Diffstat (limited to 'cmd/iiifdownloader')
-rw-r--r-- | cmd/iiifdownloader/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |