Skip to content
Snippets Groups Projects
Commit 6d0a11dc authored by Michael Telatynski's avatar Michael Telatynski
Browse files

Iterate MSC2448 support

parent fe06d9ce
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,6 @@ import ( ...@@ -10,7 +10,6 @@ import (
func GetVersion(r *http.Request, rctx rcontext.RequestContext, user api.UserInfo) interface{} { func GetVersion(r *http.Request, rctx rcontext.RequestContext, user api.UserInfo) interface{} {
unstableFeatures := make(map[string]bool) unstableFeatures := make(map[string]bool)
unstableFeatures["xyz.amorgan.blurhash"] = rctx.Config.Features.MSC2448Blurhash.Enabled
return &api.DoNotCacheResponse{ return &api.DoNotCacheResponse{
Payload: map[string]interface{}{ Payload: map[string]interface{}{
......
...@@ -72,7 +72,7 @@ func UploadMedia(r *http.Request, rctx rcontext.RequestContext, user api.UserInf ...@@ -72,7 +72,7 @@ func UploadMedia(r *http.Request, rctx rcontext.RequestContext, user api.UserInf
return api.InternalServerError("Unexpected Error") return api.InternalServerError("Unexpected Error")
} }
if rctx.Config.Features.MSC2448Blurhash.Enabled { if rctx.Config.Features.MSC2448Blurhash.Enabled && r.URL.Query().Get("xyz.amorgan.generate_blurhash") == "true" {
hash, err := info_controller.GetOrCalculateBlurhash(media, rctx) hash, err := info_controller.GetOrCalculateBlurhash(media, rctx)
if err != nil { if err != nil {
rctx.Log.Warn("Failed to calculate blurhash: " + err.Error()) rctx.Log.Warn("Failed to calculate blurhash: " + err.Error())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment