From: Christian Weiske Date: Thu, 21 Aug 2014 15:11:47 +0000 (+0200) Subject: fix re-sync with tomboy X-Git-Tag: v0.1.0~13 X-Git-Url: https://git.cweiske.de/grauphel.git/commitdiff_plain/6a35b4262cccf97f932efbfe3cd9f546ead1be52?hp=92938f0e591286b67a752af441e55626155af524 fix re-sync with tomboy --- 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'], ); }