Add space at end of image url so you don't accidently corrupt things

This commit is contained in:
William Casarin
2023-03-16 09:46:43 -06:00
parent eabbb12195
commit e0984aab34

View File

@@ -169,6 +169,9 @@ struct PostView: View {
combinedAttributedString.append(NSAttributedString(string: " "))
}
combinedAttributedString.append(uploadedImageURL)
// make sure we have a space at the end
combinedAttributedString.append(NSAttributedString(string: " "))
post = combinedAttributedString
case .failed(let error):