Explicitly add Content-Type header on emote upload
This commit is contained in:
parent
6e5cd77357
commit
5df5a5e720
1 changed files with 2 additions and 3 deletions
|
|
@ -214,9 +214,8 @@ class EmotesSettingsController extends State<EmotesSettings> {
|
||||||
}
|
}
|
||||||
final uploadResp = await showFutureLoadingDialog(
|
final uploadResp = await showFutureLoadingDialog(
|
||||||
context: context,
|
context: context,
|
||||||
future: () => Matrix.of(context)
|
future: () => Matrix.of(context).client.uploadContent(file.bytes,
|
||||||
.client
|
filename: file.name, contentType: file.mimeType),
|
||||||
.uploadContent(file.bytes, filename: file.name),
|
|
||||||
);
|
);
|
||||||
if (uploadResp.error == null) {
|
if (uploadResp.error == null) {
|
||||||
setState(() {
|
setState(() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue