diff --git a/eod/polls/catsuccess.go b/eod/polls/catsuccess.go index 33a23945..1d9c3892 100644 --- a/eod/polls/catsuccess.go +++ b/eod/polls/catsuccess.go @@ -57,7 +57,7 @@ func (p *Polls) categorizeSuccess(po *types.Poll, news func(string)) error { } else { name = fmt.Sprintf("%d elements", len(elems)) } - news(fmt.Sprintf("🗃️ Added **%s** to **%s** %s", name, po.Data["cat"].(string), p.pollContextMsg(po))) + news(fmt.Sprintf("@silent 🗃️ Added **%s** to **%s** %s", name, po.Data["cat"].(string), p.pollContextMsg(po))) return nil } @@ -92,7 +92,7 @@ func (p *Polls) unCategorizeSuccess(po *types.Poll, news func(string)) error { name = fmt.Sprintf("%d elements", len(elems)) } - news(fmt.Sprintf("🗃️ Removed **%s** from **%s** %s", name, po.Data["cat"].(string), p.pollContextMsg(po))) + news(fmt.Sprintf("@silent 🗃️ Removed **%s** from **%s** %s", name, po.Data["cat"].(string), p.pollContextMsg(po))) return nil } @@ -108,7 +108,7 @@ func (p *Polls) catImageSuccess(po *types.Poll, newsFunc func(string)) error { if po.Data["old"] == "" { word = "Added" } - newsFunc(fmt.Sprintf("📸 %s Category Image - **%s** %s", word, po.Data["cat"].(string), p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 📸 %s Category Image - **%s** %s", word, po.Data["cat"].(string), p.pollContextMsg(po))) return nil } @@ -121,7 +121,7 @@ func (p *Polls) catMarkSuccess(po *types.Poll, newsFunc func(string)) error { } // News - newsFunc(fmt.Sprintf("📝 Signed Category - **%s** %s", po.Data["cat"].(string), p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 📝 Signed Category - **%s** %s", po.Data["cat"].(string), p.pollContextMsg(po))) return nil } @@ -134,7 +134,7 @@ func (p *Polls) catColorSuccess(po *types.Poll, newsFunc func(string)) error { } // News - newsFunc(fmt.Sprintf("🎨 Colored Category - **%s** %s", po.Data["cat"].(string), p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 🎨 Colored Category - **%s** %s", po.Data["cat"].(string), p.pollContextMsg(po))) return nil } diff --git a/eod/polls/elemcreate.go b/eod/polls/elemcreate.go index 0dd0a1e0..bd1e56dc 100644 --- a/eod/polls/elemcreate.go +++ b/eod/polls/elemcreate.go @@ -174,9 +174,9 @@ func (e *Polls) elemCreate(p *types.Poll, news func(string)) (err error) { // Message if exists { - news(fmt.Sprintf("🆕 Combination - **%s** %s - Combination **#%d**", name, e.pollContextMsg(p), combid)) + news(fmt.Sprintf("@silent 🆕 Combination - **%s** %s - Combination **#%d**", name, e.pollContextMsg(p), combid)) } else { - news(fmt.Sprintf("🆕 Element - **%s** %s - Element **#%d**", name, e.pollContextMsg(p), id)) + news(fmt.Sprintf("@silent 🆕 Element - **%s** %s - Element **#%d**", name, e.pollContextMsg(p), id)) } return } diff --git a/eod/polls/elemsuccess.go b/eod/polls/elemsuccess.go index 0051fb02..24a5b1a1 100644 --- a/eod/polls/elemsuccess.go +++ b/eod/polls/elemsuccess.go @@ -24,7 +24,7 @@ func (p *Polls) elemImageSuccess(po *types.Poll, newsFunc func(string)) error { if po.Data["old"] == "" { word = "Added" } - newsFunc(fmt.Sprintf("📸 %s Image - **%s** %s", word, name, p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 📸 %s Image - **%s** %s", word, name, p.pollContextMsg(po))) return nil } @@ -43,7 +43,7 @@ func (p *Polls) elemMarkSuccess(po *types.Poll, newsFunc func(string)) error { } // News - newsFunc(fmt.Sprintf("📝 Signed - **%s** %s", name, p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 📝 Signed - **%s** %s", name, p.pollContextMsg(po))) return nil } @@ -62,7 +62,7 @@ func (p *Polls) elemColorSuccess(po *types.Poll, newsFunc func(string)) error { } // News - newsFunc(fmt.Sprintf("🎨 Colored - **%s** %s", name, p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 🎨 Colored - **%s** %s", name, p.pollContextMsg(po))) return nil } diff --git a/eod/polls/querysuccess.go b/eod/polls/querysuccess.go index 8068b4ca..a065f201 100644 --- a/eod/polls/querysuccess.go +++ b/eod/polls/querysuccess.go @@ -22,7 +22,7 @@ func (p *Polls) queryCreateSuccess(po *types.Poll, news func(string)) error { } // News - news(fmt.Sprintf("🧮 Created Query - **%s** %s", po.Data["query"], p.pollContextMsg(po))) + news(fmt.Sprintf("@silent 🧮 Created Query - **%s** %s", po.Data["query"], p.pollContextMsg(po))) return nil } @@ -34,7 +34,7 @@ func (p *Polls) queryDeleteSuccess(po *types.Poll, news func(string)) error { } // News - news(fmt.Sprintf("🗑️ Deleted Query - **%s** %s", po.Data["query"], p.pollContextMsg(po))) + news(fmt.Sprintf("@silent 🗑️ Deleted Query - **%s** %s", po.Data["query"], p.pollContextMsg(po))) return nil } @@ -50,7 +50,7 @@ func (p *Polls) queryImageSuccess(po *types.Poll, newsFunc func(string)) error { if po.Data["old"] == "" { word = "Added" } - newsFunc(fmt.Sprintf("📸 %s Query Image - **%s** %s", word, po.Data["query"].(string), p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 📸 %s Query Image - **%s** %s", word, po.Data["query"].(string), p.pollContextMsg(po))) return nil } @@ -63,7 +63,7 @@ func (p *Polls) queryMarkSuccess(po *types.Poll, newsFunc func(string)) error { } // News - newsFunc(fmt.Sprintf("📝 Signed Query - **%s** %s", po.Data["query"].(string), p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 📝 Signed Query - **%s** %s", po.Data["query"].(string), p.pollContextMsg(po))) return nil } @@ -76,7 +76,7 @@ func (p *Polls) queryColorSuccess(po *types.Poll, newsFunc func(string)) error { } // News - newsFunc(fmt.Sprintf("🎨 Colored Category - **%s** %s", po.Data["query"].(string), p.pollContextMsg(po))) + newsFunc(fmt.Sprintf("@silent 🎨 Colored Category - **%s** %s", po.Data["query"].(string), p.pollContextMsg(po))) return nil }