Compare commits

...

2 Commits

Author SHA1 Message Date
Magnus Åhall
a3155c5882 Bumped to v19 2024-01-09 17:30:58 +01:00
Magnus Åhall
60c6d4eaba Added markdown property save for unencrypted notes 2024-01-09 17:30:52 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -330,6 +330,7 @@ func UpdateNode(userID, nodeID int, content string, cryptoKeyID int, markdown bo
SET
content = $1,
content_encrypted = '',
markdown = $5,
crypto_key_id = CASE $2::int
WHEN 0 THEN NULL
ELSE $2
@ -342,6 +343,7 @@ func UpdateNode(userID, nodeID int, content string, cryptoKeyID int, markdown bo
cryptoKeyID,
nodeID,
userID,
markdown,
)
}

View File

@ -1 +1 @@
v18
v19