fix: notification content not escape issue. ticket: #18624MBA

This commit is contained in:
CMK 2021-07-07 20:12:55 +08:00
parent 1af870a157
commit 0d7dc64e3f
1 changed files with 2 additions and 0 deletions

View File

@ -114,5 +114,7 @@ extension String {
.replacingOccurrences(of: ">", with: ">")
.replacingOccurrences(of: """, with: "\"")
.replacingOccurrences(of: "'", with: "'")
.replacingOccurrences(of: "'", with: "")
}
}