Sfoglia il codice sorgente

Store posts as 'mono' text by default

master
Matt Baer 9 anni fa
parent
commit
b765127e0c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      write-telnet.go

+ 1
- 1
write-telnet.go Vedi File

@@ -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")


Caricamento…
Annulla
Salva