Skip to content

Commit 0f3d0eb

Browse files
committed
Fixes #4185 - Correct the bug report service submission URL after updating how secrets are configured.
- introduced in 54f4aed
1 parent 2863466 commit 0f3d0eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ElementX/Sources/Services/BugReport/BugReportService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class BugReportService: NSObject, BugReportServiceProtocol {
107107
}
108108
body.appendString(string: "--\(boundary)--\r\n")
109109

110-
var request = URLRequest(url: baseURL.appendingPathComponent("submit"))
110+
var request = URLRequest(url: baseURL)
111111
request.addValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: "Content-Type")
112112

113113
request.httpMethod = "POST"

0 commit comments

Comments
 (0)