]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - rounds/habrImage.go
Raise copyright years
[tofuproxy.git] / rounds / habrImage.go
index 778fe764674c1ee0a0472d86cb0e1427070d58af..2770a699405385b929fb6e09da1f0bac0841c1b3 100644 (file)
@@ -1,7 +1,7 @@
 /*
 tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
              manager, WARC/geminispace browser
-Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2021-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -29,7 +29,8 @@ func RoundHabrImage(
        w http.ResponseWriter,
        req *http.Request,
 ) (bool, error) {
-       if host == "habrastorage.org" && strings.Contains(req.URL.Path, "r/w780q1/") {
+       if ((host == "habrastorage.org") || (host == "hsto.org")) &&
+               strings.Contains(req.URL.Path, "r/w780q1/") {
                req.URL.Path = strings.Replace(req.URL.Path, "r/w780q1/", "", 1)
                http.Redirect(w, req, req.URL.String(), http.StatusFound)
                return false, nil