Skip to content

Commit 8d1d399

Browse files
fix: update default value for concatPath in createUrl method
1 parent ac25eec commit 8d1d399

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ios/Modules/AppUrl/AppUrl.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class AppUrl: NSObject {
5555
}
5656

5757
// MARK: - Private Helper Methods
58-
private static func createUrl(_ url: String, path: UrlPath?, port: Int? = nil, query: String? = nil, concatPath: Bool = false) -> URL? {
58+
private static func createUrl(_ url: String, path: UrlPath?, port: Int? = nil, query: String? = nil, concatPath: Bool = true) -> URL? {
5959
let processedUrl = ensureProtocol(removeTrailingSlash(url))
6060
guard var components = URLComponents(string: processedUrl) ?? URLComponents(string: defaultUrlString) else {
6161
return nil

0 commit comments

Comments
 (0)