aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/notestorage.php6
1 files 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'],
);
}