From 0d15086c1cfad7b7f452b62abd95b3f032352d98 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Wed, 11 Jun 2025 09:16:40 +0300 Subject: [PATCH] Fixes #4185 - Correct the bug report service submission URL after updating how secrets are configured. - introduced in https://github.com/element-hq/element-x-ios/pull/4145/commits/54f4aeda4fee11f01028944668f01502f63abc35 --- ElementX/Sources/Services/BugReport/BugReportService.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElementX/Sources/Services/BugReport/BugReportService.swift b/ElementX/Sources/Services/BugReport/BugReportService.swift index 2117aef30..0ecd995e6 100644 --- a/ElementX/Sources/Services/BugReport/BugReportService.swift +++ b/ElementX/Sources/Services/BugReport/BugReportService.swift @@ -107,7 +107,7 @@ class BugReportService: NSObject, BugReportServiceProtocol { } body.appendString(string: "--\(boundary)--\r\n") - var request = URLRequest(url: baseURL.appendingPathComponent("submit")) + var request = URLRequest(url: baseURL) request.addValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type") request.httpMethod = "POST"