Merge branch 'BramvdnHeuvel/emote-content-type' into 'main'

Explicitly add Content-Type header on emote upload

See merge request famedly/fluffychat!507
onboarding
Sorunome 4 years ago
commit 60d682f54a

@ -214,9 +214,8 @@ class EmotesSettingsController extends State<EmotesSettings> {
}
final uploadResp = await showFutureLoadingDialog(
context: context,
future: () => Matrix.of(context)
.client
.uploadContent(file.bytes, filename: file.name),
future: () => Matrix.of(context).client.uploadContent(file.bytes,
filename: file.name, contentType: file.mimeType),
);
if (uploadResp.error == null) {
setState(() {

Loading…
Cancel
Save