Fix separator parsing in update view (#502)
This commit is contained in:
parent
afc54c5e40
commit
5af84583ab
|
@ -38,7 +38,7 @@ struct UpdateDetailView<UpdaterType: Updater>: View {
|
||||||
for line in update.body.split(whereSeparator: \.isNewline) {
|
for line in update.body.split(whereSeparator: \.isNewline) {
|
||||||
let attributed: Text
|
let attributed: Text
|
||||||
let split = line.split(separator: " ")
|
let split = line.split(separator: " ")
|
||||||
let unprefixed = split.dropFirst().joined()
|
let unprefixed = split.dropFirst().joined(separator: " ")
|
||||||
if let prefix = split.first {
|
if let prefix = split.first {
|
||||||
switch prefix {
|
switch prefix {
|
||||||
case "#":
|
case "#":
|
||||||
|
|
Loading…
Reference in New Issue