summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-11-01 20:50:58 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-11-01 20:50:58 +0000
commit6c5c68c597ca8c1a8c945050912cef7ed91cf98d (patch)
treeb36b5fbf0c87608c53c494696360881d4d1157d7
parentc603d0f9561b09fa80f73a325672a519ed32af45 (diff)
Remove unread
-rw-r--r--src/DTS/BookmarkRepository.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/DTS/BookmarkRepository.php b/src/DTS/BookmarkRepository.php
index a3fd5dd..675cb8b 100644
--- a/src/DTS/BookmarkRepository.php
+++ b/src/DTS/BookmarkRepository.php
@@ -135,7 +135,6 @@ class BookmarkRepository implements \Iterator
$bookmark->title = $data[2];
$bookmark->tag = $data[3];
$bookmark->addedAt = $data[4];
- $bookmark->unread = (bool)$data[5];
$this->repository[] = $bookmark;
}
@@ -156,7 +155,6 @@ class BookmarkRepository implements \Iterator
$bookmark->title,
$bookmark->tag,
$bookmark->addedAt,
- (int)$bookmark->unread,
]);
}