1
0

Fix getting unsplash thumbnails for non "photo-*" urls

This commit is contained in:
kolaente
2020-05-31 22:40:27 +02:00
parent d8a6acda96
commit d63666cece
2 changed files with 2 additions and 7 deletions

View File

@ -72,5 +72,5 @@ func ProxyUnsplashThumb(c echo.Context) error {
return handler.HandleHTTPError(err, c)
}
pingbackByPhotoID(photo.ID)
return unsplashImage("https://images.unsplash.com/photo-"+getImageID(photo.Urls.Raw)+"?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjcyODAwfQ", c)
return unsplashImage("https://images.unsplash.com/"+getImageID(photo.Urls.Raw)+"?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjcyODAwfQ", c)
}