Skip to content

Xcode beta 6 broke your project #1

@ghost

Description

With Xcode beta 6, Apple changed the .join method to .joinWithSeparator

The fix is quick. In file HTTPUtils.swift:

// change this
let full = "?" + "&".join(pairs)
// to this 
let full = "?" + pairs.join("&")

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions