From f6bba985163ad308fdbbcfec704e2d4028b9d729 Mon Sep 17 00:00:00 2001 From: JP Hastings-Spital Date: Fri, 5 Apr 2024 12:58:43 +0100 Subject: [PATCH] FB posts are notes by default --- tools/archive/facebook/exportfile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/archive/facebook/exportfile.go b/tools/archive/facebook/exportfile.go index 631071ae..ea38d2a5 100644 --- a/tools/archive/facebook/exportfile.go +++ b/tools/archive/facebook/exportfile.go @@ -49,7 +49,7 @@ func postize(e PostCheckinPhotoOrVideo, matches []string) (shared.Post, shared.M postDate := time.Unix(int64(e.Timestamp), 0).UTC() post := shared.Post{ - Path: makePostPath("post", postDate, postHash), + Path: makePostPath("note", postDate, postHash), FrontMatter: shared.FrontMatter{ Title: e.Title, Date: postDate.Format(time.RFC3339),