summaryrefslogtreecommitdiff
path: root/src/item.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/item.cc')
-rw-r--r--src/item.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/item.cc b/src/item.cc
index a1b9b6bb..d123ee5a 100644
--- a/src/item.cc
+++ b/src/item.cc
@@ -338,13 +338,10 @@ namespace {
}
value_t get_seq(item_t& item) {
- return item.pos ? long(item.pos->sequence) : 0L;
+ return long(item.seq());
}
value_t get_id(item_t& item) {
- if (optional<value_t> ref = item.get_tag(_("UUID")))
- return *ref;
- else
- return item.pos ? long(item.pos->sequence) : 0L;
+ return string_value(item.id());
}
value_t get_addr(item_t& item) {