We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac170ac commit 5d57e4fCopy full SHA for 5d57e4f
1 file changed
src/adapters/action/dispatcher-http-hook-mastodon.ts
@@ -43,7 +43,8 @@ function inferEncoding(action: HttpActionType, path: string): Encoding {
43
(action === "create" && path === "/api/v1/email") ||
44
(action === "create" && path === "/api/v1/featured_tag") ||
45
(action === "create" && path === "/api/v1/media") ||
46
- (action === "create" && path === "/api/v2/media")
+ (action === "create" && path === "/api/v2/media") ||
47
+ (action === "update" && path === "/api/v1/profile")
48
) {
49
return "multipart-form";
50
}
0 commit comments