Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
matrix-media-repo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
matrix-media-repo
Commits
6d0a11dc
Commit
6d0a11dc
authored
3 years ago
by
Michael Telatynski
Browse files
Options
Downloads
Patches
Plain Diff
Iterate MSC2448 support
parent
fe06d9ce
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/custom/version.go
+0
-1
0 additions, 1 deletion
api/custom/version.go
api/r0/upload.go
+1
-1
1 addition, 1 deletion
api/r0/upload.go
with
1 addition
and
2 deletions
api/custom/version.go
+
0
−
1
View file @
6d0a11dc
...
@@ -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
{}{
...
...
This diff is collapsed.
Click to expand it.
api/r0/upload.go
+
1
−
1
View file @
6d0a11dc
...
@@ -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
())
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment