mirror of
https://github.com/Rudi9719/kbtui.git
synced 2026-03-22 13:17:23 +00:00
Formatting
This commit is contained in:
@ -23,7 +23,7 @@ func cmdEdit(cmd []string) {
|
|||||||
var messageId int
|
var messageId int
|
||||||
if len(cmd) == 2 {
|
if len(cmd) == 2 {
|
||||||
messageId, _ = strconv.Atoi(cmd[1])
|
messageId, _ = strconv.Atoi(cmd[1])
|
||||||
printToView("Input", fmt.Sprintf("/edit %d Type edit here",messageId))
|
printToView("Input", fmt.Sprintf("/edit %d Type edit here", messageId))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if len(cmd) < 3 {
|
if len(cmd) < 3 {
|
||||||
@ -33,11 +33,9 @@ func cmdEdit(cmd []string) {
|
|||||||
messageId, _ = strconv.Atoi(cmd[1])
|
messageId, _ = strconv.Atoi(cmd[1])
|
||||||
chat := k.NewChat(channel)
|
chat := k.NewChat(channel)
|
||||||
newMessage := strings.Join(cmd[2:], " ")
|
newMessage := strings.Join(cmd[2:], " ")
|
||||||
_, err := chat.Edit(messageId,newMessage)
|
_, err := chat.Edit(messageId, newMessage)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
printToView("Feed", fmt.Sprintf("Error editing message %d, %+v", messageId, err))
|
printToView("Feed", fmt.Sprintf("Error editing message %d, %+v", messageId, err))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user