fix: notification content not escape issue. ticket: #18624MBA
This commit is contained in:
parent
1af870a157
commit
0d7dc64e3f
|
@ -114,5 +114,7 @@ extension String {
|
||||||
.replacingOccurrences(of: ">", with: ">")
|
.replacingOccurrences(of: ">", with: ">")
|
||||||
.replacingOccurrences(of: """, with: "\"")
|
.replacingOccurrences(of: """, with: "\"")
|
||||||
.replacingOccurrences(of: "'", with: "'")
|
.replacingOccurrences(of: "'", with: "'")
|
||||||
|
.replacingOccurrences(of: "'", with: "’")
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue