From 6a35b4262cccf97f932efbfe3cd9f546ead1be52 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 21 Aug 2014 17:11:47 +0200 Subject: [PATCH 1/1] fix re-sync with tomboy --- lib/notestorage.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/notestorage.php b/lib/notestorage.php index 77c8fc6..63e1516 100644 --- a/lib/notestorage.php +++ b/lib/notestorage.php @@ -351,11 +351,11 @@ class NoteStorage 'note-content' => $row['note_content'], 'note-content-version' => $row['note_content_version'], - 'open-on-startup' => $row['note_open_on_startup'], - 'pinned' => $row['note_pinned'], + 'open-on-startup' => (bool) $row['note_open_on_startup'], + 'pinned' => (bool) $row['note_pinned'], 'tags' => json_decode($row['note_tags']), - 'last-sync-revision' => $row['note_last_sync_revision'], + 'last-sync-revision' => (int) $row['note_last_sync_revision'], ); } -- 2.30.2