forked from shadowfacts/Tusker
Fix crash on invalid URL
This commit is contained in:
parent
354b3469a8
commit
a6f8565ab3
|
@ -38,9 +38,9 @@ class StatusTableViewCell: UITableViewCell {
|
||||||
|
|
||||||
let doc = try! SwiftSoup.parse(status.content)
|
let doc = try! SwiftSoup.parse(status.content)
|
||||||
let body = doc.body()!
|
let body = doc.body()!
|
||||||
print("---")
|
// print("---")
|
||||||
print(status.content)
|
// print(status.content)
|
||||||
print("---")
|
// print("---")
|
||||||
|
|
||||||
let text = attributedTextForNode(body)
|
let text = attributedTextForNode(body)
|
||||||
contentLabel.attributedText = text
|
contentLabel.attributedText = text
|
||||||
|
@ -74,13 +74,16 @@ class StatusTableViewCell: UITableViewCell {
|
||||||
case "br":
|
case "br":
|
||||||
attributed.append(NSAttributedString(string: "\n"))
|
attributed.append(NSAttributedString(string: "\n"))
|
||||||
case "a":
|
case "a":
|
||||||
let linkRange = NSRange(location: 0, length: attributed.length)
|
if let link = try? node.attr("href"),
|
||||||
let linkAttributes: [NSAttributedString.Key: Any] = [
|
let url = URL(string: link) {
|
||||||
.foregroundColor: UIColor.blue
|
let linkRange = NSRange(location: 0, length: attributed.length)
|
||||||
]
|
let linkAttributes: [NSAttributedString.Key: Any] = [
|
||||||
attributed.setAttributes(linkAttributes, range: linkRange)
|
.foregroundColor: UIColor.blue
|
||||||
let link = try! node.attr("href")
|
]
|
||||||
links[linkRange] = URL(string: link)!
|
attributed.setAttributes(linkAttributes, range: linkRange)
|
||||||
|
|
||||||
|
links[linkRange] = url
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue