Browse Source

Store posts with 13-character IDs

The new IDs will be be served as text/html on write.as, instead of
text/plain.
master
Matt Baer 9 years ago
parent
commit
49f0043470
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      store/store.go

+ 1
- 1
store/store.go View File

@@ -7,7 +7,7 @@ import (
)

const (
FriendlyIdLen = 12
FriendlyIdLen = 13
)

func SavePost(outDir string, post []byte) (string, error) {


Loading…
Cancel
Save