浏览代码

Store posts as 'mono' text by default

master
Matt Baer 9 年前
父节点
当前提交
b765127e0c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      write-telnet.go

+ 1
- 1
write-telnet.go 查看文件

@@ -169,7 +169,7 @@ func readInput(c net.Conn) {
friendlyId := store.GenerateFriendlyRandomString(store.FriendlyIdLen)
editToken := store.Generate62RandomString(32)

_, err := db.Exec("INSERT INTO posts (id, content, modify_token) VALUES (?, ?, ?)", friendlyId, post.Bytes(), editToken)
_, err := db.Exec("INSERT INTO posts (id, content, modify_token, text_appearance) VALUES (?, ?, ?, 'mono')", friendlyId, post.Bytes(), editToken)
if err != nil {
fmt.Printf("There was an error saving: %s\n", err)
output(c, "Something went terribly wrong, sorry. Try again later?\n\n")


正在加载...
取消
保存