From 49f00434702ac3e28d0da46f9b512dad92cdb11c Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Sat, 14 Mar 2015 13:46:29 -0400 Subject: [PATCH] Store posts with 13-character IDs The new IDs will be be served as text/html on write.as, instead of text/plain. --- store/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/store.go b/store/store.go index 2adfcc9..cd62838 100644 --- a/store/store.go +++ b/store/store.go @@ -7,7 +7,7 @@ import ( ) const ( - FriendlyIdLen = 12 + FriendlyIdLen = 13 ) func SavePost(outDir string, post []byte) (string, error) {