A very simple bookmarking webapp bookmarker.finxol.deno.net/

fix: preserve bookmark datatime on import

finxol.io 9b196c59 2c870433

verified
+1 -4
+1 -4
server/routes/bookmarks.ts
··· 204 204 const hashBuffer = await crypto.subtle.digest("SHA-256", data) 205 205 const id = encodeHex(hashBuffer) 206 206 207 - const bookmarkData = BookmarkSchema({ 208 - ...bookmark, 209 - updatedAt: new Date().toISOString(), 210 - }) 207 + const bookmarkData = BookmarkSchema(bookmark) 211 208 212 209 if (bookmarkData instanceof type.errors) { 213 210 console.error("Error parsing bookmark:", bookmarkData.summary)