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
59e5ee77
Unverified
Commit
59e5ee77
authored
3 years ago
by
Travis Ralston
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #328 from t3chguy/msc2448
Iterate MSC2448 support
parents
a3fa875b
6d0a11dc
No related branches found
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 @
59e5ee77
...
@@ -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 @
59e5ee77
...
@@ -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