|
@@ -3508,6 +3508,14 @@ extension EditorGroup: UITableViewDelegate, UITableViewDataSource {
|
|
|
|
|
|
messageText.isUserInteractionEnabled = false
|
|
messageText.isUserInteractionEnabled = false
|
|
if !textChat!.isEmpty {
|
|
if !textChat!.isEmpty {
|
|
|
|
+ if textChat!.contains("■"){
|
|
|
|
+ textChat = textChat?.replacingOccurrences(of: "■", with: "\n")
|
|
|
|
+ textChat = textChat?.replacingOccurrences(of: "UPL02cc73b8441692181388714.jpg", with: "")
|
|
|
|
+ textChat = textChat?.replacingOccurrences(of: "accounts.google.com", with: "")
|
|
|
|
+ textChat = textChat?.replacingOccurrences(of: "Google Drive: Sign-in", with: "")
|
|
|
|
+ textChat = textChat?.replacingOccurrences(of: "Access Google Drive with a Google account (for personal use) or Google Workspace account (for...", with: "")
|
|
|
|
+ textChat = textChat?.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
|
|
+ }
|
|
let listTextEnter = textChat!.split(separator: "\n")
|
|
let listTextEnter = textChat!.split(separator: "\n")
|
|
for j in 0...listTextEnter.count - 1 {
|
|
for j in 0...listTextEnter.count - 1 {
|
|
let listText = listTextEnter[j].split(separator: " ")
|
|
let listText = listTextEnter[j].split(separator: " ")
|