rigormorrtiss 4 жил өмнө
parent
commit
a262e933e2
2 өөрчлөгдсөн 2 нэмэгдсэн , 9 устгасан
  1. 0 8
      .gitignore
  2. 2 1
      util/discord.go

+ 0 - 8
.gitignore

@@ -1,8 +0,0 @@
-# Test binary, built with `go test -c`
-*.test
-
-# Output of the go coverage tool, specifically when used with LiteIDE
-*.out
-
-# Dependency directories (remove the comment below to include it)
-# vendor/

+ 2 - 1
util/discord.go

@@ -13,8 +13,9 @@ func WriteMessage(v *tview.TextView, s *state.State, m discord.Message) {
 	var b strings.Builder
 	// $  ╭ AUTHOR_USERNAME (BOT) MESSAGE_CONTENT*linebreak*
 	writeReferencedMessage(&b, s, m.ReferencedMessage)
-	// $ AUTHOR_USERNAME (BOT) MESSAGE_CONTENT
+	// $ AUTHOR_USERNAME (BOT)*spacee*
 	writeAuthor(&b, s, m.Author)
+	// $ MESSAGE_CONTENT
 	writeContent(&b, m.Content)
 	// $ *space*(edited)
 	if m.EditedTimestamp.IsValid() {